Procházet zdrojové kódy

修改PWM启动位置,放置第一个脉冲为默认频率

2
JIU JIALIN před 1 měsícem
rodič
revize
e89b354870
6 změnil soubory, kde provedl 916 přidání a 589 odebrání
  1. +34
    -24
      PLSR/PLSR/Core/Src/tim.c
  2. +4
    -4
      PLSR/PLSR/EWARM/settings/Project.wsdt
  3. +6
    -6
      PLSR/PLSR/EWARM/settings/test.1.dbgdt
  4. +12
    -12
      PLSR/PLSR/EWARM/settings/test.1.dnx
  5. +733
    -483
      PLSR/PLSR/EWARM/test.1.dep
  6. +127
    -60
      PLSR/PLSR/EWARM/test.1/Obj/.ninja_log

+ 34
- 24
PLSR/PLSR/Core/Src/tim.c Zobrazit soubor

@@ -32,6 +32,8 @@ static uint8_t s_pulse_count_direction = 1; // 脉冲计数方向(1-递增, 0-
uint32_t g_plsr_current_target_freq = 0; // 当前段目标频率频率(Hz),用于检测是否有频率变化
static uint8_t s_last_direction = 0xFF; // 初始值设为无效值,确保第一次总是认为有方向变化
uint8_t g_plsr_mod_flag = 0xff;
static uint8_t g_first_flag = 0;
// ==================== PLSR内部变量 ====================

// ==================== PLSR内部变量 ====================
static uint32_t s_tim6_update_freq_us = 1000; // TIM6更新频率(微秒)
@@ -1311,7 +1313,7 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route)
if (part1_pulse_num > 0 && part3_pulse_num > 0)
{
// 两个阶段都有脉冲,按比例分配
part1_pulse_num = (part1_pulse_num * total_pulses) / calculated_total;
part1_pulse_num = ((part1_pulse_num * total_pulses) + calculated_total / 2) / calculated_total; //解决脉冲数过小时导致的问题
part3_pulse_num = total_pulses - part1_pulse_num;
}
else if (part1_pulse_num > 0)
@@ -1795,6 +1797,7 @@ void PLSR_Route_Start(PLSR_RouteConfig_t* route)
// 重置全局脉冲计数器
AllPluse = 0;
g_first_flag = 0;
// 重置上次记录的总脉冲数,用于实时累加计算
s_last_total_pulse = g_plsr_route.pulse_count;
@@ -1805,23 +1808,6 @@ void PLSR_Route_Start(PLSR_RouteConfig_t* route)
// 启动定时器
PLSR_TIM6_Start(); // 启动TIM6用于频率更新和等待时间计时
HAL_TIM_Base_Start_IT(&htim2); // 启动TIM2中断用于段切换
switch (route->output_port)
{
case 0:
HAL_TIM_PWM_Start(&htim10, TIM_CHANNEL_1);
break;
case 1:
HAL_TIM_PWM_Start(&htim11, TIM_CHANNEL_1);
break;
case 2:
HAL_TIM_PWM_Start(&htim13, TIM_CHANNEL_1);
break;
case 3:
HAL_TIM_PWM_Start(&htim14, TIM_CHANNEL_1);
break;
default:
break;
}
}

/**
@@ -2448,8 +2434,8 @@ void PLSR_Accel_Process(PLSR_RouteConfig_t* route)
// 参数有效性检查
if (route == NULL) return;

// 记录是否是第一次设置非零频率
uint8_t first_flag = (route->current_freq == 0);
// // 记录是否是第一次设置非零频率
// uint8_t first_flag = (route->current_freq == 0);
// 记录上一次的运行状态,用于检测状态变化
static PLSR_RunState_t prev_run_state = PLSR_STATE_IDLE;
@@ -2486,21 +2472,45 @@ void PLSR_Accel_Process(PLSR_RouteConfig_t* route)
uint32_t calculated_freq = PLSR_Calculate_FreqByPosition(route, 1);
// 检查是否达到目标频率
if (calculated_freq >= route->target_freq) {
if (calculated_freq >= route->target_freq)
{
calculated_freq = route->target_freq; // 限制到目标频率
}
// 只有当计算出的频率与当前频率不同时才更新
if (calculated_freq != route->current_freq) {
if (calculated_freq != route->current_freq)
{
route->current_freq = calculated_freq;
PLSR_PWM_SetFrequency(route->current_freq);
}
// 如果是第一次设置非零频率,启动PWM输出
if(first_flag == 1 && route->current_freq != 0)
if(g_first_flag == 0 && route->current_freq != 0) //在这里第一次启动PWM输出避免发默认脉冲
{
g_first_flag = 1;
switch (route->output_port)
{
case 0:
HAL_TIM_PWM_Start(&htim10, TIM_CHANNEL_1);
break;
case 1:
HAL_TIM_PWM_Start(&htim11, TIM_CHANNEL_1);
break;
case 2:
HAL_TIM_PWM_Start(&htim13, TIM_CHANNEL_1);
break;
case 3:
HAL_TIM_PWM_Start(&htim14, TIM_CHANNEL_1);
break;
default:
break;
}
PLSR_PWM_Start();
}
// // 如果是第一次设置非零频率,启动PWM输出
// if(first_flag == 1 && route->current_freq != 0)
// {
// PLSR_PWM_Start();
// }
}
// ==================== 减速处理 ====================
else if (route->run_state == PLSR_STATE_DECEL)


+ 4
- 4
PLSR/PLSR/EWARM/settings/Project.wsdt
Diff nebyl zobrazen, protože je příliš veliký
Zobrazit soubor


+ 6
- 6
PLSR/PLSR/EWARM/settings/test.1.dbgdt
Diff nebyl zobrazen, protože je příliš veliký
Zobrazit soubor


+ 12
- 12
PLSR/PLSR/EWARM/settings/test.1.dnx Zobrazit soubor

@@ -14,10 +14,10 @@
<StLinkDriver>
<stlinkserialNo>46232557</stlinkserialNo>
<stlinkfoundProbes />
<CStepIntDis>_ 0</CStepIntDis>
<LeaveTargetRunning>_ 0</LeaveTargetRunning>
<stlinkResetStyle>0</stlinkResetStyle>
<stlinkResetStrategy>2</stlinkResetStrategy>
<CStepIntDis>_ 0</CStepIntDis>
<LeaveTargetRunning>_ 0</LeaveTargetRunning>
</StLinkDriver>
<DebugChecksum>
<Checksum>1636260004</Checksum>
@@ -75,9 +75,6 @@
<ITMportsLogFile>0</ITMportsLogFile>
<ITMlogFile>$PROJ_DIR$\ITM.log</ITMlogFile>
</SWOTraceHWSettings>
<DisassembleMode>
<mode>0</mode>
</DisassembleMode>
<TermIOLog>
<LoggingEnabled>_ 0</LoggingEnabled>
<LogFile>_ ""</LogFile>
@@ -87,10 +84,6 @@
<LogFile>_ ""</LogFile>
<Category>_ 0</Category>
</LogFile>
<Aliases>
<Count>0</Count>
<SuppressDialog>0</SuppressDialog>
</Aliases>
<Trace2>
<Enabled>0</Enabled>
<ShowSource>0</ShowSource>
@@ -136,9 +129,6 @@
<ShowTimeSum>1</ShowTimeSum>
<SumSortOrder>0</SumSortOrder>
</EventLog>
<Breakpoints2>
<Count>0</Count>
</Breakpoints2>
<DriverProfiling>
<Enabled>0</Enabled>
<Mode>3</Mode>
@@ -152,4 +142,14 @@
<CallStackStripe>
<ShowTiming>1</ShowTiming>
</CallStackStripe>
<DisassembleMode>
<mode>0</mode>
</DisassembleMode>
<Breakpoints2>
<Count>0</Count>
</Breakpoints2>
<Aliases>
<Count>0</Count>
<SuppressDialog>0</SuppressDialog>
</Aliases>
</settings>

+ 733
- 483
PLSR/PLSR/EWARM/test.1.dep
Diff nebyl zobrazen, protože je příliš veliký
Zobrazit soubor


+ 127
- 60
PLSR/PLSR/EWARM/test.1/Obj/.ninja_log Zobrazit soubor

@@ -1,63 +1,130 @@
# ninja log v5
2545 2729 7778173252484225 stm32f4xx_ll_rng.pbi 5e12b9ea00d0b826
2732 2769 7778173254370556 stm32f4xx_ll_gpio.pbi df8b54563945d41d
497 876 7778173235480679 stm32f4xx_hal_flash_ex.pbi ac2d035774fe6a2e
880 1263 7778173239306144 stm32f4xx_hal_pwr.pbi b347497fce55b6a8
2547 2731 7778173252554224 stm32f4xx_ll_pwr.pbi 952cb4e4f4edb65b
2543 2734 7778173252474224 stm32f4xx_ll_tim.pbi b88554c6464192f5
2737 2766 7778173254430582 test.1_part7.pbi 67c64030b23c9b51
2767 3296 7778173259580569 test.1_part3.pbi 2c7780fc3f88c160
377 873 7778173235480679 stm32f4xx_hal_rcc_ex.pbi c1d751d24d77a2df
2263 2360 7778173250018393 app_hooks.pbi ffd399489d189d5a
2360 2547 7778173252004214 os_cpu_c.pbi eb75b848b406ea34
1283 1652 7778173243271831 stm32f4xx_hal_pwr_ex.pbi b84426bf5a4ce0cf
2769 3297 7778173259250572 test.1_part4.pbi b15d70d6e2dea5ca
1632 2038 7778173246578396 stm32f4xx_hal_rcc.pbi 50976e6b18f3b8bc
1188 1541 7778173242159551 stm32f4xx_hal_usart.pbi b368fafd8b8b8bb9
2043 2447 7778173251138396 stm32f4xx_hal_tim.pbi 71840baae88d57c4
1252 1283 7778173239589033 stm32f4xx_ll_dac.pbi 7dfc4be0933cdfaf
175 253 7775491955598164 stm32f4xx_ll_rng.pbi 5e12b9ea00d0b826
1025 1056 7775491964090997 stm32f4xx_ll_gpio.pbi df8b54563945d41d
254 617 7775491959696056 stm32f4xx_hal_flash_ex.pbi ac2d035774fe6a2e
1088 1455 7775491967911042 stm32f4xx_hal_pwr.pbi b347497fce55b6a8
736 803 7775491961177804 stm32f4xx_ll_pwr.pbi 952cb4e4f4edb65b
49 80 7775491954328170 stm32f4xx_ll_tim.pbi b88554c6464192f5
181 256 7775491955718160 test.1_part7.pbi 67c64030b23c9b51
1456 2021 7775491973610751 test.1_part3.pbi 2c7780fc3f88c160
492 958 7775491962735135 stm32f4xx_hal_rcc_ex.pbi c1d751d24d77a2df
111 174 7775491955278161 app_hooks.pbi ffd399489d189d5a
499 671 7775491960222592 os_cpu_c.pbi eb75b848b406ea34
955 1322 7775491966570992 stm32f4xx_hal_pwr_ex.pbi b84426bf5a4ce0cf
1558 2072 7775491974160761 test.1_part4.pbi b15d70d6e2dea5ca
51 494 7775491957888175 stm32f4xx_hal_rcc.pbi 50976e6b18f3b8bc
1192 1557 7775491968840991 stm32f4xx_hal_usart.pbi b368fafd8b8b8bb9
618 1045 7775491963970993 stm32f4xx_hal_tim.pbi 71840baae88d57c4
706 735 7775491960887804 stm32f4xx_ll_dac.pbi 7dfc4be0933cdfaf
2014 2487 7762488664073707 uart.pbi 5ce52444157923c9
3827 5407 7778173280494581 test.1.pbw f11e09b552b4c82f
789 826 7778173235014418 stm32f4xx_ll_crc.pbi dcf41d4b97590765
2083 2263 7778173248948401 stm32f4xx_ll_rcc.pbi fb9ace481decf8ab
2447 2545 7778173251508398 stm32f4xx_ll_spi.pbi ce805017b70a4f43
43 367 7778173230418212 stm32f4xx_hal_msp.pbi 8144db72f01a260b
2734 2771 7778173254380554 stm32f4xx_ll_usart.pbi 783190689e783d9
2772 2824 7778173254980544 os_dbg.pbi f7287a072fe86a55
2729 2941 7778173255410543 stm32f4xx_ll_dma.pbi f9e6142ede2883b4
1263 1631 7778173243061259 stm32f4xx_hal_crc.pbi 881b29e4c80746b3
2740 2776 7778173254460563 stm32f4xx_ll_exti.pbi 883a2fd463949e02
2416 2543 7778173252074218 ucos_ii.pbi 4e0ab25e0060431e
2941 3061 7778173256270591 test.1_part5.pbi 41f12be61ce67c27
2456 2736 7778173252704223 stm32f4xx_ll_i2c.pbi 7f1151d8874c40c9
827 1195 7778173238670576 stm32f4xx_hal.pbi a073c739b6b34173
873 1256 7778173239216152 stm32f4xx_hal_sram.pbi 4652c5af4efd4e19
2824 2940 7778173255250544 test.1_part6.pbi b9d684e502f25afa
1254 1724 7778173243988227 stm32f4xx_hal_flash.pbi eccf13860e1d0c6a
1662 2082 7778173247148398 stm32f4xx_hal_tim_ex.pbi 3c68a2e86514987f
2038 2416 7778173250498404 stm32f4xx_hal_wwdg.pbi fca2b44f67349f99
503 886 7778173235615302 stm32f4xx_hal_flash_ramfunc.pbi ae498685b336a49c
388 789 7778173234634748 stm32f4xx_hal_uart.pbi e7ca7ebbb4330340
3959 5601 7775492009203922 test.1.pbw f11e09b552b4c82f
703 863 7775491961953988 stm32f4xx_ll_crc.pbi dcf41d4b97590765
497 535 7775491958768163 stm32f4xx_ll_rcc.pbi fb9ace481decf8ab
48 77 7775491954308167 stm32f4xx_ll_spi.pbi ce805017b70a4f43
1322 1656 7775491969944367 stm32f4xx_hal_msp.pbi 8144db72f01a260b
54 84 7775491954368170 stm32f4xx_ll_usart.pbi 783190689e783d9
41 111 7775491954588180 os_dbg.pbi f7287a072fe86a55
1221 1251 7775491966040988 stm32f4xx_ll_dma.pbi f9e6142ede2883b4
1656 2023 7775491973360747 stm32f4xx_hal_crc.pbi 881b29e4c80746b3
958 1024 7775491963470994 stm32f4xx_ll_exti.pbi 883a2fd463949e02
46 181 7775491955338158 ucos_ii.pbi 4e0ab25e0060431e
1251 1262 7775491966160991 test.1_part5.pbi 41f12be61ce67c27
1045 1087 7775491964300993 stm32f4xx_ll_i2c.pbi 7f1151d8874c40c9
1907 2210 7775491975630751 stm32f4xx_hal.pbi a073c739b6b34173
84 498 7775491958198156 stm32f4xx_hal_sram.pbi 4652c5af4efd4e19
672 703 7775491960495378 test.1_part6.pbi b9d684e502f25afa
1057 1450 7775491967580991 stm32f4xx_hal_flash.pbi eccf13860e1d0c6a
536 1021 7775491963550990 stm32f4xx_hal_tim_ex.pbi 3c68a2e86514987f
78 496 7775491958128176 stm32f4xx_hal_wwdg.pbi fca2b44f67349f99
80 492 7775491958048235 stm32f4xx_hal_flash_ramfunc.pbi ae498685b336a49c
804 1191 7775491965350989 stm32f4xx_hal_uart.pbi e7ca7ebbb4330340
35 454 7762489045860992 timer.pbi 8f8acc6a162957f
877 1254 7778173239136138 stm32f4xx_hal_i2c.pbi 74395538aa12fa10
1195 1655 7778173243301818 stm32f4xx_hal_dma.pbi 2d6aa8f3983bf80a
46 388 7778173230628226 stm32f4xx_hal_timebase_tim.pbi b6f5ce0feaca8054
1656 2043 7778173246618404 stm32f4xx_hal_i2c_ex.pbi 7798e48f8e6ef374
500 879 7778173235545305 stm32f4xx_hal_dma_ex.pbi 1960c5ab56ffede7
41 500 7778173231338213 main.pbi 9c0a6aa02351636a
1897 2258 7778173249158400 stm32f4xx_hal_exti.pbi 373789209d565f00
1257 1662 7778173243361818 stm32f4xx_it.pbi d01766022cb163bc
886 1252 7778173239256142 stm32f4xx_hal_cortex.pbi 2c6d2473a153fb5a
1652 2040 7778173246738399 system_stm32f4xx.pbi f50e519d7e78a5de
39 497 7778173231198214 gpio.pbi a088b5271f02118a
1541 1897 7778173245628400 stm32f4xx_hal_gpio.pbi 53b438f48be9a8d0
2776 3484 7778173259910570 test.1_part0.pbi 60db414ccd7a80f4
3485 3826 7778173265020279 test.1.pbd 363d5d355a216cdf
2174 2739 7778173254080576 test.1_part1.pbi 72148e63fe682e2f
2259 2823 7778173254660544 test.1_part2.pbi 932c7a5b50912170
37 377 7778173230458213 dma.pbi 4f5ebe00ac67ed57
1724 2173 7778173248488395 tim.pbi f07c6d790a519d93
367 822 7778173234969596 usart.pbi 7c2d93866867ab60
2041 2456 7778173251308417 modbus_log.pbi 596603da5f343c45
34 502 7778173231268217 flash_save.pbi dc7405226be28cc6
823 1187 7778173238620561 modbus_crc.pbi 9b76681ddf289794
1022 1453 7775491967310981 stm32f4xx_hal_i2c.pbi 74395538aa12fa10
2024 2356 7775491976990745 stm32f4xx_hal_dma.pbi 2d6aa8f3983bf80a
1263 1658 7775491969448764 stm32f4xx_hal_timebase_tim.pbi b6f5ce0feaca8054
257 706 7775491960455381 stm32f4xx_hal_i2c_ex.pbi 7798e48f8e6ef374
2180 2542 7775491978783315 stm32f4xx_hal_dma_ex.pbi 1960c5ab56ffede7
2489 2913 7775491982417984 main.pbi 9c0a6aa02351636a
494 955 7775491962830988 stm32f4xx_hal_exti.pbi 373789209d565f00
1450 1816 7775491971680760 stm32f4xx_it.pbi d01766022cb163bc
2021 2491 7775491978105984 stm32f4xx_hal_cortex.pbi 2c6d2473a153fb5a
1816 2179 7775491974790780 system_stm32f4xx.pbi f50e519d7e78a5de
2073 2488 7775491978387516 gpio.pbi a088b5271f02118a
864 1220 7775491965590989 stm32f4xx_hal_gpio.pbi 53b438f48be9a8d0
3076 3611 7775491989645763 test.1_part0.pbi 60db414ccd7a80f4
3611 3958 7775491993118138 test.1.pbd 363d5d355a216cdf
2491 3074 7775491984281909 test.1_part1.pbi 72148e63fe682e2f
2543 3075 7775491984241897 test.1_part2.pbi 932c7a5b50912170
2211 2594 7775491979068866 dma.pbi 4f5ebe00ac67ed57
1453 1907 7775491972550755 tim.pbi f07c6d790a519d93
1659 2091 7775491974410748 usart.pbi 7c2d93866867ab60
2595 3076 7775491984211971 modbus_log.pbi 596603da5f343c45
2356 2820 7775491981319035 flash_save.pbi dc7405226be28cc6
2091 2597 7775491979028944 modbus_crc.pbi 9b76681ddf289794
40 70 7778185612129836 stm32f4xx_ll_gpio.pbi df8b54563945d41d
42 73 7778185612149832 stm32f4xx_ll_i2c.pbi 7f1151d8874c40c9
71 100 7778185612439833 stm32f4xx_ll_pwr.pbi 952cb4e4f4edb65b
101 248 7778185613807889 stm32f4xx_ll_dac.pbi 7dfc4be0933cdfaf
248 293 7778185614327893 stm32f4xx_ll_exti.pbi 883a2fd463949e02
37 414 7778185615517919 stm32f4xx_hal_pwr.pbi b347497fce55b6a8
38 434 7778185615567875 stm32f4xx_hal_wwdg.pbi fca2b44f67349f99
32 437 7778185615567875 stm32f4xx_hal_usart.pbi b368fafd8b8b8bb9
35 440 7778185615657882 stm32f4xx_hal_flash_ramfunc.pbi ae498685b336a49c
294 443 7778185615787884 stm32f4xx_ll_rng.pbi 5e12b9ea00d0b826
414 447 7778185615897878 stm32f4xx_ll_usart.pbi 783190689e783d9
73 450 7778185615907887 stm32f4xx_hal_rcc_ex.pbi c1d751d24d77a2df
450 496 7778185616307880 stm32f4xx_ll_rcc.pbi fb9ace481decf8ab
447 499 7778185616257883 stm32f4xx_ll_crc.pbi dcf41d4b97590765
497 531 7778185616747894 stm32f4xx_ll_dma.pbi f9e6142ede2883b4
434 848 7778185619727880 stm32f4xx_hal_gpio.pbi 53b438f48be9a8d0
444 851 7778185619807884 stm32f4xx_hal_sram.pbi 4652c5af4efd4e19
441 855 7778185619577881 stm32f4xx_hal_pwr_ex.pbi b84426bf5a4ce0cf
437 893 7778185620247896 stm32f4xx_hal_uart.pbi e7ca7ebbb4330340
499 951 7778185620807895 stm32f4xx_hal_i2c_ex.pbi 7798e48f8e6ef374
857 998 7778185621097887 stm32f4xx_ll_tim.pbi b88554c6464192f5
999 1074 7778185621941033 stm32f4xx_ll_spi.pbi ce805017b70a4f43
532 1165 7778185623053680 stm32f4xx_hal_tim.pbi 71840baae88d57c4
951 1186 7778185623173682 app_hooks.pbi ffd399489d189d5a
1075 1215 7778185623303953 os_cpu_c.pbi eb75b848b406ea34
1216 1283 7778185623880306 test.1_part5.pbi 41f12be61ce67c27
1166 1287 7778185624130303 os_dbg.pbi f7287a072fe86a55
1287 1388 7778185624752924 test.1_part6.pbi b9d684e502f25afa
851 1393 7778185625220825 stm32f4xx_hal_i2c.pbi 74395538aa12fa10
1186 1397 7778185625210814 ucos_ii.pbi 4e0ab25e0060431e
1397 1447 7778185625846245 test.1_part7.pbi 67c64030b23c9b51
848 1470 7778185626036240 stm32f4xx_hal_tim_ex.pbi 3c68a2e86514987f
893 1498 7778185626406242 stm32f4xx_hal_rcc.pbi 50976e6b18f3b8bc
1284 1716 7778185628456263 stm32f4xx_hal_cortex.pbi 2c6d2473a153fb5a
1389 1772 7778185629086260 stm32f4xx_hal_dma_ex.pbi 1960c5ab56ffede7
1394 1775 7778185629136248 stm32f4xx_hal_flash.pbi eccf13860e1d0c6a
1448 1958 7778185630626247 stm32f4xx_hal_dma.pbi 2d6aa8f3983bf80a
1470 2091 7778185631776241 test.1_part4.pbi b15d70d6e2dea5ca
1717 2095 7778185632228716 stm32f4xx_hal_flash_ex.pbi ac2d035774fe6a2e
1498 2098 7778185632359814 test.1_part3.pbi 2c7780fc3f88c160
1772 2151 7778185632882373 stm32f4xx_hal_msp.pbi 8144db72f01a260b
1775 2370 7778185634858902 tim.pbi f07c6d790a519d93
1958 2600 7778185637158907 stm32f4xx_hal_exti.pbi 373789209d565f00
2092 2603 7778185637408903 stm32f4xx_it.pbi d01766022cb163bc
2099 2606 7778185637168904 dma.pbi 4f5ebe00ac67ed57
2152 2639 7778185637688904 modbus_crc.pbi 9b76681ddf289794
2095 2671 7778185637948907 usart.pbi 7c2d93866867ab60
2370 3032 7778185641295448 modbus_log.pbi 596603da5f343c45
2600 3035 7778185641531068 stm32f4xx_hal.pbi a073c739b6b34173
2639 3059 7778185641912662 stm32f4xx_hal_timebase_tim.pbi b6f5ce0feaca8054
2604 3112 7778185642318709 gpio.pbi a088b5271f02118a
2606 3112 7778185642440129 main.pbi 9c0a6aa02351636a
2672 3167 7778185642831339 flash_save.pbi dc7405226be28cc6
3036 3465 7778185646089421 system_stm32f4xx.pbi f50e519d7e78a5de
3033 3468 7778185645969426 stm32f4xx_hal_crc.pbi 881b29e4c80746b3
3167 3769 7778185649068477 test.1_part0.pbi 60db414ccd7a80f4
3466 4034 7778185651628940 test.1_part1.pbi 72148e63fe682e2f
3468 4034 7778185651378944 test.1_part2.pbi 932c7a5b50912170
4035 4384 7778185655254428 test.1.pbd 363d5d355a216cdf
4385 6079 7778185671900328 test.1.pbw f11e09b552b4c82f
38 412 7778185700338927 main.pbi 9c0a6aa02351636a
36 412 7778185700258917 gpio.pbi a088b5271f02118a
33 449 7778185700578922 tim.pbi f07c6d790a519d93
412 987 7778185705860863 test.1_part0.pbi 60db414ccd7a80f4
449 988 7778185706110867 test.1_part1.pbi 72148e63fe682e2f
988 1333 7778185709560887 test.1.pbd 363d5d355a216cdf
1333 2931 7778185725201525 test.1.pbw f11e09b552b4c82f

Načítá se…
Zrušit
Uložit