移除无用文件,修改gitignore
This commit is contained in:
parent
35230e80ef
commit
7f226a4a74
71
.gitignore
vendored
71
.gitignore
vendored
@ -1,45 +1,30 @@
|
|||||||
# CubeMX generated files
|
*.rar
|
||||||
*.log
|
|
||||||
|
|
||||||
# Keil specific files
|
|
||||||
*.axf
|
|
||||||
*.bak
|
|
||||||
*.dep
|
|
||||||
*.d
|
|
||||||
*.htm
|
|
||||||
*.lnp
|
|
||||||
*.map
|
|
||||||
*.o
|
*.o
|
||||||
*.plg
|
*.d
|
||||||
*.uvoptx
|
|
||||||
*.uvprojx
|
|
||||||
*.uvgui.*
|
|
||||||
*.sct
|
|
||||||
|
|
||||||
# Object files and build output
|
|
||||||
*.elf
|
|
||||||
*.hex
|
|
||||||
*.bin
|
|
||||||
*.lst
|
|
||||||
*.crf
|
*.crf
|
||||||
*.lib
|
*.htm
|
||||||
*.out
|
*.dep
|
||||||
*.s19
|
*.map
|
||||||
*.pdb
|
*.bak
|
||||||
*.idb
|
*.lnp
|
||||||
|
*.lst
|
||||||
# Backup files
|
*.ini
|
||||||
*~
|
*.iex
|
||||||
*.swp
|
*.sct
|
||||||
*.tmp
|
*.scvd
|
||||||
|
*.uvguix
|
||||||
# Generated folders
|
*.dbg*
|
||||||
BUILD/
|
*.uvguix.*
|
||||||
Debug/
|
.mxproject
|
||||||
Release/
|
|
||||||
Objects/
|
RTE/
|
||||||
|
Templates/
|
||||||
# Operating system files
|
Examples/
|
||||||
.DS_Store
|
|
||||||
Thumbs.db
|
!*.uvprojx
|
||||||
desktop.ini
|
!*.h
|
||||||
|
!*.c
|
||||||
|
!*.ioc
|
||||||
|
!*.axf
|
||||||
|
!*.bin
|
||||||
|
!*.hex
|
||||||
|
BIN
Drivers/CMSIS/Lib/ARM/arm_cortexM4b_math.lib
Normal file
BIN
Drivers/CMSIS/Lib/ARM/arm_cortexM4b_math.lib
Normal file
Binary file not shown.
BIN
Drivers/CMSIS/Lib/ARM/arm_cortexM4bf_math.lib
Normal file
BIN
Drivers/CMSIS/Lib/ARM/arm_cortexM4bf_math.lib
Normal file
Binary file not shown.
BIN
Drivers/CMSIS/Lib/ARM/arm_cortexM4l_math.lib
Normal file
BIN
Drivers/CMSIS/Lib/ARM/arm_cortexM4l_math.lib
Normal file
Binary file not shown.
BIN
Drivers/CMSIS/Lib/ARM/arm_cortexM4lf_math.lib
Normal file
BIN
Drivers/CMSIS/Lib/ARM/arm_cortexM4lf_math.lib
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
1046
MDK-ARM/sick.uvoptx
Normal file
1046
MDK-ARM/sick.uvoptx
Normal file
File diff suppressed because it is too large
Load Diff
1854
MDK-ARM/sick.uvprojx
Normal file
1854
MDK-ARM/sick.uvprojx
Normal file
File diff suppressed because it is too large
Load Diff
BIN
MDK-ARM/sick/sick.axf
Normal file
BIN
MDK-ARM/sick/sick.axf
Normal file
Binary file not shown.
1339
MDK-ARM/sick/sick.hex
Normal file
1339
MDK-ARM/sick/sick.hex
Normal file
File diff suppressed because it is too large
Load Diff
@ -15,6 +15,8 @@
|
|||||||
|
|
||||||
|
|
||||||
## Led
|
## Led
|
||||||
LED1 闪烁表示线程征程
|
LED1 闪烁表示线程正常
|
||||||
LED2 闪烁表示can发送中
|
LED2 闪烁表示can发送中
|
||||||
|
|
||||||
|
## TODO :
|
||||||
|
自动化标定
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
// /* Includes ----------------------------------------------------------------- */
|
|
||||||
// #include "bsp\can.h"
|
|
||||||
// #include "can.h" // 包含 hcan 的定义
|
|
||||||
|
|
||||||
// /* Private define ----------------------------------------------------------- */
|
|
||||||
// /* Private macro ------------------------------------------------------------ */
|
|
||||||
// /* Private typedef ---------------------------------------------------------- */
|
|
||||||
// /* Private variables -------------------------------------------------------- */
|
|
||||||
// /* Private function -------------------------------------------------------- */
|
|
||||||
|
|
||||||
// /* Exported functions ------------------------------------------------------- */
|
|
||||||
// CAN_HandleTypeDef *BSP_CAN_GetHandle(BSP_CAN_t can) {
|
|
||||||
// switch (can) {
|
|
||||||
// case BSP_CAN:
|
|
||||||
// return &hcan; // 返回全局定义的 hcan 实例
|
|
||||||
// default:
|
|
||||||
// return NULL; // 未知的 CAN 枚举值
|
|
||||||
// }
|
|
||||||
// }
|
|
@ -1,15 +0,0 @@
|
|||||||
// #pragma once
|
|
||||||
|
|
||||||
// /* Includes ----------------------------------------------------------------- */
|
|
||||||
// #include <can.h>
|
|
||||||
// #include "bsp/bsp.h"
|
|
||||||
|
|
||||||
// /* Exported constants ------------------------------------------------------- */
|
|
||||||
// /* Exported macro ----------------------------------------------------------- */
|
|
||||||
// /* Exported types ----------------------------------------------------------- */
|
|
||||||
// typedef enum {
|
|
||||||
// BSP_CAN,
|
|
||||||
// } BSP_CAN_t;
|
|
||||||
|
|
||||||
// /* Exported functions prototypes -------------------------------------------- */
|
|
||||||
// CAN_HandleTypeDef *BSP_CAN_GetHandle(BSP_CAN_t can);
|
|
@ -27,4 +27,6 @@ typedef enum
|
|||||||
|
|
||||||
/* Exported functions prototypes -------------------------------------------- */
|
/* Exported functions prototypes -------------------------------------------- */
|
||||||
|
|
||||||
int8_t BSP_LED_SET(BSP_LED_Channel_t ch, BSP_LED_Status_t s);
|
int8_t BSP_LED_SET(BSP_LED_Channel_t ch, BSP_LED_Status_t s);
|
||||||
|
|
||||||
|
//未使用ws2812
|
Loading…
Reference in New Issue
Block a user