From 94841a02ddf4813c49b896eec904b1d514bcb7e8 Mon Sep 17 00:00:00 2001 From: Robofish <1683502971@qq.com> Date: Wed, 18 Jun 2025 14:41:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=9B=AE=E5=BD=95=E7=BB=93?= =?UTF-8?q?=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .DS_Store | Bin 8196 -> 0 bytes .gitignore | 34 ------------------ User/.DS_Store | Bin 6148 -> 0 bytes {User/bsp => bsp}/.DS_Store | Bin {User/bsp => bsp}/.gitkeep | 0 {User/bsp => bsp}/bsp.h | 0 {User/bsp => bsp}/buzzer_gpio.c | 0 {User/bsp => bsp}/buzzer_gpio.h | 0 {User/bsp => bsp}/can.c | 0 {User/bsp => bsp}/can.h | 0 {User/bsp => bsp}/delay.c | 0 {User/bsp => bsp}/delay.h | 0 {User/bsp => bsp}/dependencies.csv | 0 {User/bsp => bsp}/gpio_exti.c | 0 {User/bsp => bsp}/gpio_exti.h | 0 {User/bsp => bsp}/i2c.c | 0 {User/bsp => bsp}/i2c.h | 0 {User/bsp => bsp}/led_gpio.c | 0 {User/bsp => bsp}/led_gpio.h | 0 {User/bsp => bsp}/servo_pwm.c | 0 {User/bsp => bsp}/servo_pwm.h | 0 {User/bsp => bsp}/spi.c | 0 {User/bsp => bsp}/spi.h | 0 {User/bsp => bsp}/uart.c | 0 {User/bsp => bsp}/uart.h | 0 {User/component => component}/.gitkeep | 0 {User/component => component}/crc16_rm.c | 0 {User/component => component}/crc16_rm.h | 0 {User/component => component}/crc8_rm.c | 0 {User/component => component}/crc8_rm.h | 0 .../component => component}/dependencies.csv | 0 {User/component => component}/filter.c | 0 {User/component => component}/filter.h | 0 {User/component => component}/pid.c | 0 {User/component => component}/pid.h | 0 {User/component => component}/user_math.c | 0 {User/component => component}/user_math.h | 0 {User/device => device}/.DS_Store | Bin {User/device => device}/.gitkeep | 0 {User/device => device}/bmp280_i2c.c | 0 {User/device => device}/bmp280_i2c.h | 0 {User/device => device}/dependencies.csv | 0 {User/device => device}/device.h | 0 {User/device => device}/key_gpio.c | 0 {User/device => device}/key_gpio.h | 0 {User/device => device}/oled_i2c.c | 0 {User/device => device}/oled_i2c.h | 0 {User/device => device}/pc_uart.c | 0 {User/device => device}/pc_uart.h | 0 {User/device => device}/servo.c | 0 {User/device => device}/servo.h | 0 {User/module => module}/.gitkeep | 0 {User/module => module}/config.c | 0 {User/module => module}/config.h | 0 {User/task => task}/.gitkeep | 0 {User/task => task}/init.c.template | 0 {User/task => task}/task.c.template | 0 {User/task => task}/user_task.c.template | 0 {User/task => task}/user_task.h.template | 0 59 files changed, 34 deletions(-) delete mode 100644 .DS_Store delete mode 100644 .gitignore delete mode 100644 User/.DS_Store rename {User/bsp => bsp}/.DS_Store (100%) rename {User/bsp => bsp}/.gitkeep (100%) rename {User/bsp => bsp}/bsp.h (100%) rename {User/bsp => bsp}/buzzer_gpio.c (100%) rename {User/bsp => bsp}/buzzer_gpio.h (100%) rename {User/bsp => bsp}/can.c (100%) rename {User/bsp => bsp}/can.h (100%) rename {User/bsp => bsp}/delay.c (100%) rename {User/bsp => bsp}/delay.h (100%) rename {User/bsp => bsp}/dependencies.csv (100%) rename {User/bsp => bsp}/gpio_exti.c (100%) rename {User/bsp => bsp}/gpio_exti.h (100%) rename {User/bsp => bsp}/i2c.c (100%) rename {User/bsp => bsp}/i2c.h (100%) rename {User/bsp => bsp}/led_gpio.c (100%) rename {User/bsp => bsp}/led_gpio.h (100%) rename {User/bsp => bsp}/servo_pwm.c (100%) rename {User/bsp => bsp}/servo_pwm.h (100%) rename {User/bsp => bsp}/spi.c (100%) rename {User/bsp => bsp}/spi.h (100%) rename {User/bsp => bsp}/uart.c (100%) rename {User/bsp => bsp}/uart.h (100%) rename {User/component => component}/.gitkeep (100%) rename {User/component => component}/crc16_rm.c (100%) rename {User/component => component}/crc16_rm.h (100%) rename {User/component => component}/crc8_rm.c (100%) rename {User/component => component}/crc8_rm.h (100%) rename {User/component => component}/dependencies.csv (100%) rename {User/component => component}/filter.c (100%) rename {User/component => component}/filter.h (100%) rename {User/component => component}/pid.c (100%) rename {User/component => component}/pid.h (100%) rename {User/component => component}/user_math.c (100%) rename {User/component => component}/user_math.h (100%) rename {User/device => device}/.DS_Store (100%) rename {User/device => device}/.gitkeep (100%) rename {User/device => device}/bmp280_i2c.c (100%) rename {User/device => device}/bmp280_i2c.h (100%) rename {User/device => device}/dependencies.csv (100%) rename {User/device => device}/device.h (100%) rename {User/device => device}/key_gpio.c (100%) rename {User/device => device}/key_gpio.h (100%) rename {User/device => device}/oled_i2c.c (100%) rename {User/device => device}/oled_i2c.h (100%) rename {User/device => device}/pc_uart.c (100%) rename {User/device => device}/pc_uart.h (100%) rename {User/device => device}/servo.c (100%) rename {User/device => device}/servo.h (100%) rename {User/module => module}/.gitkeep (100%) rename {User/module => module}/config.c (100%) rename {User/module => module}/config.h (100%) rename {User/task => task}/.gitkeep (100%) rename {User/task => task}/init.c.template (100%) rename {User/task => task}/task.c.template (100%) rename {User/task => task}/user_task.c.template (100%) rename {User/task => task}/user_task.h.template (100%) diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index e09c1581539dc7daf1f7ed0da0b21dd7edb272df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8196 zcmeHMO>fgc5S?uTafpg40iqWqOI)K8`hlppgfux+0uFV710WMOA+>P4RpJm;QKWDz z{0II5NBA3D_%EE`&F&I8uFJ7P?M}7(oZWfeotIrZvn3+Y7|9W0jq#jz$#!B_#YI&JDbfp3S3GB z`1#w9n%g~Oy)`ze+R#Vc1!PRXe_Z@fb}_L6oo8aCR4 zSNv&T$|(4I-40%a-Lb!Nb4SKWJB+&nMF=}xxV(ND#vM6s$Wh!GDz2wHoU&8)S5_yJ zt?l)yyRq?bT6HJe>$R%8`CxN8EjzdF-g~s?zmNK{{G_5HVIDBFtUu3dj?BdT!5hSp zjC*Kd?-D(sUD}}*JtL1=8AX1_W3Me3|1t2J}Jq_nO;=>a&2;rO}Q z;~Ns!Q>?NYNm2k-k~hv0N06S|@&dzG^Xud>>2YR;Wt{lL)Wf_Ez~b|tOiavJnB6jb zIR0bsB;pIHov#Lc&CIe4{aUzR6SHk$tUh%XHCK$Zegzsrzk@|DwW4#pF3eh0F=y6l zk)A_~E)6nT@aj%$G51TU@$KAq?(NBBb4%^ke{9?nOdWRS#^sGY4<{o>$tUl}$;YUX zyNq~|r?&?WW6dgXK@=$HI956TZ=HSqe?g+PVORyM0(lCEV$*9j(8E7w^Ne$C7v(Jq w8~e>PDheuxgP{9{&ctRfAuZc>ar>D2Rkr)tpET3 diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 9a8a9c7..0000000 --- a/.gitignore +++ /dev/null @@ -1,34 +0,0 @@ -*.rar -*.o -*.d -*.crf -*.htm -*.dep -*.map -*.bak -*.lnp -*.lst -*.ini -*.iex -*.sct -*.scvd -*.uvguix -*.dbg* -*.uvguix.* -.mxproject - -RTE/ -Templates/ -Examples/ - -!*.uvprojx -!*.h -!*.c -!*.ioc -!*.axf -!*.bin -!*.hex - -build/ -dist/ -*.spec \ No newline at end of file diff --git a/User/.DS_Store b/User/.DS_Store deleted file mode 100644 index cf5987b9c9d08da25e3fdbab18b482108d144043..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeH~&u-H|5XNU4liE~BIe_Q|$r9HH(h^WBE+&)%SB&5QDA=_HR$XrtJI%q0@Qibmx#n@mh2Gqh{%PrI=4~$!+4y1%{EMr z2NgVrJdAT0qs7x%vji-G|D6Eu-44Z6(&TmC+P^O_^5~B;wFnax&&!F~R*s_S2X4KUGLO&eQT#4T=i}bpm$Im$tVpLSAxlz( ze0-l3iJXt*tVl|g8|neqbG>nIyRLWl_WS%qI(TLlNfcA$%21BG76}OTZFn z6X@t>kI(;C7vKNeNw#GPSOPbSfN&1NgAtZw&epZX@mcG`Kf~ELuF