flash随时有爆掉的可能,存档

This commit is contained in:
yxming66 2025-12-06 14:34:51 +08:00
parent 806b2e889d
commit 28538d1ed9
165 changed files with 11427 additions and 9124 deletions

View File

@ -64,8 +64,8 @@
#define configCPU_CLOCK_HZ ( SystemCoreClock )
#define configTICK_RATE_HZ ((TickType_t)1000)
#define configMAX_PRIORITIES ( 56 )
#define configMINIMAL_STACK_SIZE ((uint16_t)128)
#define configTOTAL_HEAP_SIZE ((size_t)3072)
#define configMINIMAL_STACK_SIZE ((uint16_t)0x80)
#define configTOTAL_HEAP_SIZE ((size_t)0xc00)
#define configMAX_TASK_NAME_LEN ( 16 )
#define configUSE_TRACE_FACILITY 1
#define configUSE_16_BIT_TICKS 0

View File

@ -84,7 +84,7 @@
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#define HSE_VALUE 16000000U /*!< Value of the External oscillator in Hz */
#define HSE_VALUE 8000000U /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */
#if !defined (HSE_STARTUP_TIMEOUT)

View File

@ -55,6 +55,7 @@ void DebugMon_Handler(void);
void SysTick_Handler(void);
void DMA1_Channel2_IRQHandler(void);
void DMA1_Channel3_IRQHandler(void);
void DMA1_Channel4_IRQHandler(void);
void DMA1_Channel5_IRQHandler(void);
void DMA1_Channel6_IRQHandler(void);
void DMA1_Channel7_IRQHandler(void);

View File

@ -34,11 +34,14 @@ extern "C" {
extern TIM_HandleTypeDef htim1;
extern TIM_HandleTypeDef htim2;
/* USER CODE BEGIN Private defines */
/* USER CODE END Private defines */
void MX_TIM1_Init(void);
void MX_TIM2_Init(void);
void HAL_TIM_MspPostInit(TIM_HandleTypeDef *htim);

View File

@ -49,6 +49,9 @@ void MX_DMA_Init(void)
/* DMA1_Channel3_IRQn interrupt configuration */
HAL_NVIC_SetPriority(DMA1_Channel3_IRQn, 5, 0);
HAL_NVIC_EnableIRQ(DMA1_Channel3_IRQn);
/* DMA1_Channel4_IRQn interrupt configuration */
HAL_NVIC_SetPriority(DMA1_Channel4_IRQn, 5, 0);
HAL_NVIC_EnableIRQ(DMA1_Channel4_IRQn);
/* DMA1_Channel5_IRQn interrupt configuration */
HAL_NVIC_SetPriority(DMA1_Channel5_IRQn, 5, 0);
HAL_NVIC_EnableIRQ(DMA1_Channel5_IRQn);

View File

@ -98,6 +98,7 @@ int main(void)
MX_TIM1_Init();
MX_USART1_UART_Init();
MX_USART2_UART_Init();
MX_TIM2_Init();
/* USER CODE BEGIN 2 */
/* USER CODE END 2 */
@ -140,7 +141,7 @@ void SystemClock_Config(void)
*/
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV2;
RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
RCC_OscInitStruct.HSIState = RCC_HSI_ON;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;

View File

@ -60,6 +60,7 @@ extern void USER_UART_IRQHandler(UART_HandleTypeDef *huart);
extern DMA_HandleTypeDef hdma_spi1_tx;
extern DMA_HandleTypeDef hdma_spi1_rx;
extern DMA_HandleTypeDef hdma_spi2_tx;
extern DMA_HandleTypeDef hdma_usart1_tx;
extern DMA_HandleTypeDef hdma_usart2_rx;
extern DMA_HandleTypeDef hdma_usart2_tx;
extern UART_HandleTypeDef huart2;
@ -215,6 +216,20 @@ void DMA1_Channel3_IRQHandler(void)
/* USER CODE END DMA1_Channel3_IRQn 1 */
}
/**
* @brief This function handles DMA1 channel4 global interrupt.
*/
void DMA1_Channel4_IRQHandler(void)
{
/* USER CODE BEGIN DMA1_Channel4_IRQn 0 */
/* USER CODE END DMA1_Channel4_IRQn 0 */
HAL_DMA_IRQHandler(&hdma_usart1_tx);
/* USER CODE BEGIN DMA1_Channel4_IRQn 1 */
/* USER CODE END DMA1_Channel4_IRQn 1 */
}
/**
* @brief This function handles DMA1 channel5 global interrupt.
*/

View File

@ -25,6 +25,7 @@
/* USER CODE END 0 */
TIM_HandleTypeDef htim1;
TIM_HandleTypeDef htim2;
/* TIM1 init function */
void MX_TIM1_Init(void)
@ -94,6 +95,46 @@ void MX_TIM1_Init(void)
/* USER CODE END TIM1_Init 2 */
HAL_TIM_MspPostInit(&htim1);
}
/* TIM2 init function */
void MX_TIM2_Init(void)
{
/* USER CODE BEGIN TIM2_Init 0 */
/* USER CODE END TIM2_Init 0 */
TIM_ClockConfigTypeDef sClockSourceConfig = {0};
TIM_MasterConfigTypeDef sMasterConfig = {0};
/* USER CODE BEGIN TIM2_Init 1 */
/* USER CODE END TIM2_Init 1 */
htim2.Instance = TIM2;
htim2.Init.Prescaler = 0;
htim2.Init.CounterMode = TIM_COUNTERMODE_UP;
htim2.Init.Period = 65535;
htim2.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1;
htim2.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE;
if (HAL_TIM_Base_Init(&htim2) != HAL_OK)
{
Error_Handler();
}
sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL;
if (HAL_TIM_ConfigClockSource(&htim2, &sClockSourceConfig) != HAL_OK)
{
Error_Handler();
}
sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET;
sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE;
if (HAL_TIMEx_MasterConfigSynchronization(&htim2, &sMasterConfig) != HAL_OK)
{
Error_Handler();
}
/* USER CODE BEGIN TIM2_Init 2 */
/* USER CODE END TIM2_Init 2 */
}
void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle)
@ -110,6 +151,17 @@ void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle)
/* USER CODE END TIM1_MspInit 1 */
}
else if(tim_baseHandle->Instance==TIM2)
{
/* USER CODE BEGIN TIM2_MspInit 0 */
/* USER CODE END TIM2_MspInit 0 */
/* TIM2 clock enable */
__HAL_RCC_TIM2_CLK_ENABLE();
/* USER CODE BEGIN TIM2_MspInit 1 */
/* USER CODE END TIM2_MspInit 1 */
}
}
void HAL_TIM_MspPostInit(TIM_HandleTypeDef* timHandle)
{
@ -151,6 +203,17 @@ void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* tim_baseHandle)
/* USER CODE END TIM1_MspDeInit 1 */
}
else if(tim_baseHandle->Instance==TIM2)
{
/* USER CODE BEGIN TIM2_MspDeInit 0 */
/* USER CODE END TIM2_MspDeInit 0 */
/* Peripheral clock disable */
__HAL_RCC_TIM2_CLK_DISABLE();
/* USER CODE BEGIN TIM2_MspDeInit 1 */
/* USER CODE END TIM2_MspDeInit 1 */
}
}
/* USER CODE BEGIN 1 */

View File

@ -29,6 +29,7 @@
UART_HandleTypeDef huart1;
UART_HandleTypeDef huart2;
DMA_HandleTypeDef hdma_usart1_tx;
DMA_HandleTypeDef hdma_usart2_rx;
DMA_HandleTypeDef hdma_usart2_tx;
@ -45,7 +46,7 @@ void MX_USART1_UART_Init(void)
/* USER CODE END USART1_Init 1 */
huart1.Instance = USART1;
huart1.Init.BaudRate = 115200;
huart1.Init.BaudRate = 100000;
huart1.Init.WordLength = UART_WORDLENGTH_8B;
huart1.Init.StopBits = UART_STOPBITS_1;
huart1.Init.Parity = UART_PARITY_NONE;
@ -112,6 +113,23 @@ void HAL_UART_MspInit(UART_HandleTypeDef* uartHandle)
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
/* USART1 DMA Init */
/* USART1_TX Init */
hdma_usart1_tx.Instance = DMA1_Channel4;
hdma_usart1_tx.Init.Direction = DMA_MEMORY_TO_PERIPH;
hdma_usart1_tx.Init.PeriphInc = DMA_PINC_DISABLE;
hdma_usart1_tx.Init.MemInc = DMA_MINC_ENABLE;
hdma_usart1_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE;
hdma_usart1_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE;
hdma_usart1_tx.Init.Mode = DMA_NORMAL;
hdma_usart1_tx.Init.Priority = DMA_PRIORITY_LOW;
if (HAL_DMA_Init(&hdma_usart1_tx) != HAL_OK)
{
Error_Handler();
}
__HAL_LINKDMA(uartHandle,hdmatx,hdma_usart1_tx);
/* USER CODE BEGIN USART1_MspInit 1 */
/* USER CODE END USART1_MspInit 1 */
@ -197,6 +215,8 @@ void HAL_UART_MspDeInit(UART_HandleTypeDef* uartHandle)
*/
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_9);
/* USART1 DMA DeInit */
HAL_DMA_DeInit(uartHandle->hdmatx);
/* USER CODE BEGIN USART1_MspDeInit 1 */
/* USER CODE END USART1_MspDeInit 1 */

File diff suppressed because one or more lines are too long

View File

@ -26,7 +26,7 @@
<ToolsetNumber>0x4</ToolsetNumber>
<ToolsetName>ARM-ADS</ToolsetName>
<TargetOption>
<CLKADS>16000000</CLKADS>
<CLKADS>8000000</CLKADS>
<OPTTT>
<gFlags>1</gFlags>
<BeepAtEnd>1</BeepAtEnd>
@ -148,24 +148,7 @@
<Name>-U7 -O2254 -SF4000 -C0 -A0 -I0 -HNlocalhost -HP7184 -P1 -N00("ARM CoreSight SW-DP") -D00(1BA01477) -L00(0) -TO131090 -TC10000000 -TT10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F10x_128.FLM -FS08000000 -FL010000 -FP0($$Device:STM32F103C8$Flash\STM32F10x_128.FLM)</Name>
</SetRegEntry>
</TargetDriverDllRegistry>
<Breakpoint>
<Bp>
<Number>0</Number>
<Type>0</Type>
<LineNumber>321</LineNumber>
<EnabledFlag>1</EnabledFlag>
<Address>134246252</Address>
<ByteObject>0</ByteObject>
<HtxType>0</HtxType>
<ManyObjects>0</ManyObjects>
<SizeOfObject>0</SizeOfObject>
<BreakByAccess>0</BreakByAccess>
<BreakIfRCount>1</BreakIfRCount>
<Filename>..\User\module\mr16.c</Filename>
<ExecCommand></ExecCommand>
<Expression>\\MR16\../User/module/mr16.c\321</Expression>
</Bp>
</Breakpoint>
<Breakpoint/>
<WatchWindow1>
<Ww>
<count>0</count>
@ -202,12 +185,17 @@
<WinNumber>1</WinNumber>
<ItemText>robot_config,0x0A</ItemText>
</Ww>
<Ww>
<count>7</count>
<WinNumber>1</WinNumber>
<ItemText>txbuffer,0x0A</ItemText>
</Ww>
</WatchWindow1>
<MemoryWindow1>
<Mm>
<WinNumber>1</WinNumber>
<SubType>0</SubType>
<ItemText>0x800e000</ItemText>
<ItemText>0x0800f800</ItemText>
<AccSizeX>0</AccSizeX>
</Mm>
</MemoryWindow1>
@ -394,7 +382,7 @@
<Group>
<GroupName>Drivers/STM32F1xx_HAL_Driver</GroupName>
<tvExp>0</tvExp>
<tvExp>1</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<cbSel>0</cbSel>
<RteFlg>0</RteFlg>
@ -1386,6 +1374,18 @@
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
<File>
<GroupNumber>11</GroupNumber>
<FileNumber>88</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<bDave2>0</bDave2>
<PathWithFileName>..\User\task\dbus.c</PathWithFileName>
<FilenameWithoutPath>dbus.c</FilenameWithoutPath>
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
</Group>
<Group>

View File

@ -81,7 +81,7 @@
</BeforeMake>
<AfterMake>
<RunUserProg1>0</RunUserProg1>
<RunUserProg2>1</RunUserProg2>
<RunUserProg2>0</RunUserProg2>
<UserProg1Name></UserProg1Name>
<UserProg2Name></UserProg2Name>
<UserProg1Dos16Mode>0</UserProg1Dos16Mode>
@ -138,7 +138,7 @@
</Flash1>
<bUseTDR>1</bUseTDR>
<Flash2>BIN\UL2V8M.DLL</Flash2>
<Flash3></Flash3>
<Flash3>"" ()</Flash3>
<Flash4></Flash4>
<pFcarmOut></pFcarmOut>
<pFcarmGrp></pFcarmGrp>
@ -328,7 +328,7 @@
<uC99>1</uC99>
<uGnu>0</uGnu>
<useXO>0</useXO>
<v6Lang>5</v6Lang>
<v6Lang>3</v6Lang>
<v6LangP>3</v6LangP>
<vShortEn>1</vShortEn>
<vShortWch>1</vShortWch>
@ -339,7 +339,7 @@
<MiscControls></MiscControls>
<Define>USE_HAL_DRIVER,STM32F103xB</Define>
<Undefine></Undefine>
<IncludePath>../Core/Inc;../Drivers/STM32F1xx_HAL_Driver/Inc;../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy;../Drivers/CMSIS/Device/ST/STM32F1xx/Include;../Drivers/CMSIS/Include;../sx1281-driver-c;../User;../Middlewares/Third_Party/FreeRTOS/Source/include;../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2;../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM3</IncludePath>
<IncludePath>../Core/Inc;../Drivers/STM32F1xx_HAL_Driver/Inc;../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy;../Drivers/CMSIS/Device/ST/STM32F1xx/Include;../sx1281-driver-c;../User;../Middlewares/Third_Party/FreeRTOS/Source/include;../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2;../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM3;../Drivers/CMSIS/Include</IncludePath>
</VariousControls>
</Cads>
<Aads>
@ -357,7 +357,7 @@
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath>../Drivers/CMSIS/Include</IncludePath>
<IncludePath>../Drivers/CMSIS/Include;../Drivers/CMSIS/Device/ST/STM32F1xx/Include</IncludePath>
</VariousControls>
</Aads>
<LDads>
@ -1549,6 +1549,11 @@
<FileType>1</FileType>
<FilePath>..\User\task\radio.c</FilePath>
</File>
<File>
<FileName>dbus.c</FileName>
<FileType>1</FileType>
<FilePath>..\User\task\dbus.c</FilePath>
</File>
</Files>
</Group>
<Group>
@ -1561,8 +1566,8 @@
<RTE>
<apis/>
<components>
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="4.3.0" condition="CMSIS Core">
<package name="CMSIS" schemaVersion="1.3" url="http://www.keil.com/pack/" vendor="ARM" version="4.5.0"/>
<component Cclass="CMSIS" Cgroup="CORE" Cvendor="ARM" Cversion="5.4.0" condition="ARMv6_7_8-M Device">
<package name="CMSIS" schemaVersion="1.3" url="http://www.keil.com/pack/" vendor="ARM" version="5.7.0"/>
<targetInfos>
<targetInfo name="MR16"/>
</targetInfos>

Binary file not shown.

View File

@ -22,7 +22,7 @@ Dialog DLL: TCM.DLL V1.48.0.0
<h2>Project:</h2>
D:\CUBEMX\MR16\MDK-ARM\MR16.uvprojx
Project File Date: 12/04/2025
Project File Date: 12/06/2025
<h2>Output:</h2>
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'D:\cangming\ARM\ARMCC\Bin'
@ -34,43 +34,24 @@ compiling mr16.c...
#endif
../User/bsp/gpio.h(59): warning: #1-D: last line of file ends without a newline
#endif
..\User\module\mr16.c(85): warning: #1295-D: Deprecated declaration MR16_CLI_Init - give arg types
int8_t MR16_CLI_Init();
..\User\module\mr16.c(92): warning: #546-D: transfer of control bypasses initialization of:
variable "RXheader" (declared at line 100)
..\User\module\mr16.c(132): warning: #546-D: transfer of control bypasses initialization of:
variable "RXheader" (declared at line 146)
variable "totalCount" (declared at line 158)
switch (source) {
^
..\User\module\mr16.c(155): warning: #940-D: missing return statement at end of non-void function "MR16_UI_PowerON"
}
..\User\module\mr16.c(159): warning: #940-D: missing return statement at end of non-void function "MR16_UI_Home"
}
..\User\module\mr16.c(163): warning: #940-D: missing return statement at end of non-void function "MR16_UI_Setting"
}
..\User\module\mr16.c(177): warning: #188-D: enumerated type mixed with another type
LCD_Init(1);
..\User\module\mr16.c(181): warning: #940-D: missing return statement at end of non-void function "MR16_Init"
}
..\User\module\mr16.c(237): warning: #940-D: missing return statement at end of non-void function "MR16_Main"
}
..\User\module\mr16.c(471): warning: #223-D: function "strtoul" declared implicitly
if (arg4[0] != '\0') val = strtoul(arg4, NULL, 0);
..\User\module\mr16.c(472): warning: #223-D: function "strtoul" declared implicitly
else if (arg3[0] != '\0') val = strtoul(arg3, NULL, 0);
..\User\module\mr16.c(660): warning: #177-D: variable "proto" was declared but never referenced
SX1281_RadioMode_t proto;
..\User\module\mr16.c(737): warning: #1-D: last line of file ends without a newline
}
..\User\module\mr16.c(737): warning: #940-D: missing return statement at end of non-void function "MR16_CLI_Init"
}
..\User\module\mr16.c(79): warning: #177-D: variable "MR16_FSM" was declared but never referenced
..\User\module\mr16.c(248): warning: #188-D: enumerated type mixed with another type
LCD_Init(1);
..\User\module\mr16.c(998): warning: #186-D: pointless comparison of unsigned integer with zero
if (val < 0 || val > 255) { snprintf(pcWriteBuffer, xWriteBufferLen, "Invalid LoRa Preamble (0-255)\r\n"); return pdFALSE; }
..\User\module\mr16.c(81): warning: #177-D: variable "MR16_FSM" was declared but never referenced
static MR16_FSM_t MR16_FSM = MR16_FSM_NONE;
..\User\module\mr16.c(81): warning: #177-D: variable "MR16_SettingFSM" was declared but never referenced
static MR16_SettingFSM_t MR16_SettingFSM=MR16_SETTINGFSM_home;
..\User\module\mr16.c: 17 warnings, 0 errors
..\User\module\mr16.c(424): warning: #177-D: variable "baudrate_help" was declared but never referenced
static const char baudrate_help[] =
..\User\module\mr16.c: 7 warnings, 0 errors
linking...
Program Size: Code=38876 RO-data=18360 RW-data=380 ZI-data=19716
Program Size: Code=44640 RO-data=20484 RW-data=272 ZI-data=19984
FromELF: creating hex file...
"MR16\MR16.axf" - 0 Error(s), 17 Warning(s).
"MR16\MR16.axf" - 0 Error(s), 7 Warning(s).
<h2>Software Packages used:</h2>
@ -94,7 +75,7 @@ Package Vendor: Keil
* Component: ARM::CMSIS:CORE:5.4.0
Include file: CMSIS\Core\Include\tz_context.h
Build Time Elapsed: 00:00:06
Build Time Elapsed: 00:00:02
</pre>
</body>
</html>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -59,6 +59,7 @@
"mr16\init.o"
"mr16\user_task.o"
"mr16\radio.o"
"mr16\dbus.o"
--library_type=microlib --strict --scatter "MR16\MR16.sct"
--summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols
--info sizes --info totals --info unused --info veneers

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -7,3 +7,35 @@ mr16\config.o: ../User/device/sx1281_driver/sx1281_driver.h
mr16\config.o: D:\cangming\ARM\ARMCC\Bin\..\include\math.h
mr16\config.o: ../User/device/device.h
mr16\config.o: ../User/module/mr16.h
mr16\config.o: ../User/bsp/flash.h
mr16\config.o: ../User/bsp/bsp.h
mr16\config.o: ../Core/Inc/main.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
mr16\config.o: ../Core/Inc/stm32f1xx_hal_conf.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h
mr16\config.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
mr16\config.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
mr16\config.o: ../Drivers/CMSIS/Include/core_cm3.h
mr16\config.o: ../Drivers/CMSIS/Include/cmsis_version.h
mr16\config.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
mr16\config.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
mr16\config.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
mr16\config.o: D:\cangming\ARM\ARMCC\Bin\..\include\stddef.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_spi.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
mr16\config.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h
mr16\config.o: D:\cangming\ARM\ARMCC\Bin\..\include\string.h

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
MDK-ARM/MR16/dbus.crf Normal file

Binary file not shown.

51
MDK-ARM/MR16/dbus.d Normal file
View File

@ -0,0 +1,51 @@
mr16\dbus.o: ..\User\task\dbus.c
mr16\dbus.o: ../User/module/mr16.h
mr16\dbus.o: D:\cangming\ARM\ARMCC\Bin\..\include\stdint.h
mr16\dbus.o: D:\cangming\ARM\ARMCC\Bin\..\include\stdbool.h
mr16\dbus.o: ../User/device/sx1281_driver/sx1281.h
mr16\dbus.o: ../User/device/sx1281_driver/sx1281_driver.h
mr16\dbus.o: D:\cangming\ARM\ARMCC\Bin\..\include\math.h
mr16\dbus.o: ../User/device/device.h
mr16\dbus.o: ../User/task/user_task.h
mr16\dbus.o: ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h
mr16\dbus.o: D:\cangming\ARM\ARMCC\Bin\..\include\stddef.h
mr16\dbus.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h
mr16\dbus.o: ../Core/Inc/FreeRTOSConfig.h
mr16\dbus.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h
mr16\dbus.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h
mr16\dbus.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h
mr16\dbus.o: ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM3/portmacro.h
mr16\dbus.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h
mr16\dbus.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h
mr16\dbus.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h
mr16\dbus.o: ../User/bsp/uart.h
mr16\dbus.o: ../Core/Inc/usart.h
mr16\dbus.o: ../Core/Inc/main.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
mr16\dbus.o: ../Core/Inc/stm32f1xx_hal_conf.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h
mr16\dbus.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
mr16\dbus.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
mr16\dbus.o: ../Drivers/CMSIS/Include/core_cm3.h
mr16\dbus.o: ../Drivers/CMSIS/Include/cmsis_version.h
mr16\dbus.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
mr16\dbus.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
mr16\dbus.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_spi.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
mr16\dbus.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h
mr16\dbus.o: ../User/bsp/bsp.h

BIN
MDK-ARM/MR16/dbus.o Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -11,5 +11,5 @@ mr16\freertos_cli.o: ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/AR
mr16\freertos_cli.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h
mr16\freertos_cli.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h
mr16\freertos_cli.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h
mr16\freertos_cli.o: ..\User\component\FreeRTOS_CLI.h
mr16\freertos_cli.o: ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h
mr16\freertos_cli.o: ..\User\component\FreeRTOS_CLI.h

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -6,6 +6,7 @@ mr16\mr16.o: ../User/device/sx1281_driver/sx1281.h
mr16\mr16.o: ../User/device/sx1281_driver/sx1281_driver.h
mr16\mr16.o: D:\cangming\ARM\ARMCC\Bin\..\include\math.h
mr16\mr16.o: ../User/device/device.h
mr16\mr16.o: ../User/module/config.h
mr16\mr16.o: ../Core/Inc/main.h
mr16\mr16.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
mr16\mr16.o: ../Core/Inc/stm32f1xx_hal_conf.h
@ -35,12 +36,13 @@ mr16\mr16.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_spi.h
mr16\mr16.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
mr16\mr16.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
mr16\mr16.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h
mr16\mr16.o: D:\cangming\ARM\ARMCC\Bin\..\include\string.h
mr16\mr16.o: D:\cangming\ARM\ARMCC\Bin\..\include\stdio.h
mr16\mr16.o: ../User/bsp/flash.h
mr16\mr16.o: ../User/bsp/bsp.h
mr16\mr16.o: ../Core/Inc/usart.h
mr16\mr16.o: ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h
mr16\mr16.o: D:\cangming\ARM\ARMCC\Bin\..\include\string.h
mr16\mr16.o: D:\cangming\ARM\ARMCC\Bin\..\include\stdio.h
mr16\mr16.o: D:\cangming\ARM\ARMCC\Bin\..\include\stdlib.h
mr16\mr16.o: ../User/bsp/flash.h
mr16\mr16.o: ../User/bsp/bsp.h
mr16\mr16.o: ../User/device/sx1281_driver/radio.h
mr16\mr16.o: ../User/device/lcd_driver/lcd.h
mr16\mr16.o: ../User/bsp/spi.h
@ -54,4 +56,3 @@ mr16\mr16.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h
mr16\mr16.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h
mr16\mr16.o: ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM3/portmacro.h
mr16\mr16.o: ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h
mr16\mr16.o: ../User/module/config.h

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -50,5 +50,6 @@ mr16\radio.o: D:\cangming\ARM\ARMCC\Bin\..\include\math.h
mr16\radio.o: ../User/device/device.h
mr16\radio.o: ../User/bsp/flash.h
mr16\radio.o: ../User/bsp/bsp.h
mr16\radio.o: ../User/bsp/uart.h
mr16\radio.o: ../User/device/sx1281_driver/radio.h
mr16\radio.o: ../User/module/config.h

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More