├── README.md ├── ChibiOS_2.6.6 ├── docs │ ├── rsc │ │ ├── logo.png │ │ ├── workspace.png │ │ ├── footer_chm.html │ │ ├── header_chm.html │ │ └── footer_html.html │ ├── html │ │ └── logo_small.png │ ├── index.html │ ├── readme.txt │ └── reports │ │ └── build.txt ├── demos │ ├── AVR-AT90CANx-GCC │ │ ├── Makefile │ │ └── readme.txt │ ├── AVR-ATmega128-GCC │ │ ├── Makefile │ │ └── readme.txt │ ├── ARMCM4-SAM4L │ │ └── ARMCM4-SAM4L.7z │ ├── AVR-ArduinoMega-GCC │ │ ├── Makefile │ │ └── readme.txt │ ├── ARMCM3-STM32F103 │ │ ├── iar │ │ │ └── ch.eww │ │ └── readme.txt │ ├── ARMCM3-STM32F107 │ │ ├── iar │ │ │ └── ch.eww │ │ └── readme.txt │ ├── ARMCM0-LPC1114-LPCXPRESSO │ │ └── iar │ │ │ └── ch.eww │ ├── ARMCM3-LPC1343-LPCXPRESSO │ │ └── iar │ │ │ └── ch.eww │ ├── ARMCM3-STM32F100-DISCOVERY │ │ └── iar │ │ │ └── ch.eww │ ├── ARMCM3-STM32L152-DISCOVERY │ │ └── iar │ │ │ └── ch.eww │ ├── ARMCM4-STM32F407-DISCOVERY │ │ └── iar │ │ │ └── ch.eww │ ├── ARM7-AT91SAM7X-UIP-GCC │ │ └── web │ │ │ ├── cc-arch.h │ │ │ └── webthread.h │ ├── ARMCM3-GENERIC-KERNEL │ │ └── readme.txt │ ├── ARM7-LPC214x-FATFS-GCC │ │ └── readme.txt │ ├── ARMCM4-STM32F401C-DISCOVERY │ │ ├── usbcfg.h │ │ └── readme.txt │ ├── ARMCM4-STM32F429-DISCOVERY │ │ ├── usbcfg.h │ │ └── readme.txt │ ├── ARMCM4-STM32F407-DISCOVERY-MEMS │ │ └── usbcfg.h │ ├── ARMCM0-STM32F051-DISCOVERY │ │ └── readme.txt │ ├── ARMCM4-STM32F303-DISCOVERY │ │ └── readme.txt │ ├── ARMCM4-STM32F373-STM32373C_EVAL │ │ └── readme.txt │ ├── ARM7-LPC214x-GCC │ │ └── readme.txt │ ├── ARMCM3-STM32F103_INEMO_DISCOVERY │ │ └── readme.txt │ ├── ARM7-AT91SAM7X-FATFS-GCC │ │ └── readme.txt │ ├── MSP430-MSP430x1611-GCC │ │ └── readme.txt │ ├── ARM7-LPC214x-G++ │ │ └── readme.txt │ ├── ARMCM3-STM32F103-G++ │ │ └── readme.txt │ ├── ARMCM3-STM32F103ZG-FATFS │ │ └── readme.txt │ ├── ARMCM3-STM32F107-LWIP │ │ └── readme.txt │ ├── ARMCM4-STM32F407-LWIP │ │ └── readme.txt │ ├── Posix-GCC │ │ └── readme.txt │ ├── ARMCM3-STM32F103RB-NUCLEO │ │ └── readme.txt │ ├── ARMCM3-STM32L152RE-NUCLEO │ │ └── readme.txt │ ├── ARMCM4-STM32F401RE-NUCLEO │ │ └── readme.txt │ └── ARMCM0-STM32F030R8-NUCLEO │ │ └── readme.txt ├── os │ ├── hal │ │ ├── platforms │ │ │ ├── SPC560Pxx │ │ │ │ ├── xpc560p.h │ │ │ │ ├── platform.mk │ │ │ │ └── typedefs.h │ │ │ ├── SPC563Mxx │ │ │ │ ├── xpc563m.h │ │ │ │ ├── platform.mk │ │ │ │ └── typedefs.h │ │ │ ├── SPC564Axx │ │ │ │ ├── xpc564a.h │ │ │ │ ├── platform.mk │ │ │ │ └── typedefs.h │ │ │ ├── STM32F30x │ │ │ │ └── stm32f30x.h │ │ │ ├── STM32F37x │ │ │ │ └── stm32f37x.h │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx.h │ │ │ ├── STM32L1xx │ │ │ │ └── stm32l1xx.h │ │ │ ├── Posix │ │ │ │ └── platform.mk │ │ │ ├── Win32 │ │ │ │ └── platform.mk │ │ │ ├── MSP430 │ │ │ │ └── platform.mk │ │ │ ├── AVR │ │ │ │ └── platform.mk │ │ │ ├── LPC214x │ │ │ │ ├── platform.mk │ │ │ │ └── vic.h │ │ │ ├── LPC11xx │ │ │ │ └── platform.mk │ │ │ ├── LPC122x │ │ │ │ └── platform.mk │ │ │ ├── LPC13xx │ │ │ │ └── platform.mk │ │ │ ├── LPC8xx │ │ │ │ └── platform.mk │ │ │ ├── LPC11Uxx │ │ │ │ └── platform.mk │ │ │ ├── SPC560BCxx │ │ │ │ ├── platform.mk │ │ │ │ └── typedefs.h │ │ │ ├── SPC56ELxx │ │ │ │ ├── platform.mk │ │ │ │ └── typedefs.h │ │ │ ├── AT91SAM7 │ │ │ │ └── platform.mk │ │ │ └── platforms.dox │ │ ├── templates │ │ │ ├── platform.mk │ │ │ └── mcuconf.h │ │ └── hal.mk │ ├── various │ │ ├── cpp_wrappers │ │ │ └── kernel.mk │ │ ├── fatfs_bindings │ │ │ ├── readme.txt │ │ │ └── fatfs.mk │ │ ├── lwip_bindings │ │ │ └── readme.txt │ │ └── devices_lib │ │ │ └── accel │ │ │ └── lis302dl.dox │ ├── ports │ │ ├── GCC │ │ │ ├── AVR │ │ │ │ └── port.mk │ │ │ ├── MSP430 │ │ │ │ └── port.mk │ │ │ ├── SIMIA32 │ │ │ │ └── port.mk │ │ │ ├── ARM │ │ │ │ ├── LPC214x │ │ │ │ │ └── port.mk │ │ │ │ └── AT91SAM7 │ │ │ │ │ └── port.mk │ │ │ ├── PPC │ │ │ │ ├── SPC560Bxx │ │ │ │ │ └── port.mk │ │ │ │ ├── SPC560Dxx │ │ │ │ │ └── port.mk │ │ │ │ ├── SPC560Pxx │ │ │ │ │ └── port.mk │ │ │ │ ├── SPC563Mxx │ │ │ │ │ └── port.mk │ │ │ │ ├── SPC564Axx │ │ │ │ │ └── port.mk │ │ │ │ ├── SPC56ELxx │ │ │ │ │ └── port.mk │ │ │ │ └── SPC560BCxx │ │ │ │ │ └── port.mk │ │ │ └── ARMCMx │ │ │ │ ├── SAM4L │ │ │ │ └── port.mk │ │ │ │ ├── LPC8xx │ │ │ │ └── port.mk │ │ │ │ ├── LPC11xx │ │ │ │ └── port.mk │ │ │ │ ├── LPC122x │ │ │ │ └── port.mk │ │ │ │ ├── LPC13xx │ │ │ │ └── port.mk │ │ │ │ ├── STM32F0xx │ │ │ │ └── port.mk │ │ │ │ ├── STM32F1xx │ │ │ │ └── port.mk │ │ │ │ ├── STM32F2xx │ │ │ │ └── port.mk │ │ │ │ ├── STM32F3xx │ │ │ │ └── port.mk │ │ │ │ ├── STM32F4xx │ │ │ │ └── port.mk │ │ │ │ └── STM32L1xx │ │ │ │ └── port.mk │ │ └── common │ │ │ └── ARMCMx │ │ │ └── CMSIS │ │ │ └── readme.txt │ └── kernel │ │ └── kernel.mk ├── ext │ └── stdperiph_stm32f4 │ │ └── src │ │ ├── stm32f4xx_flash.c │ │ └── stm32f4xx_rcc.c ├── boards │ ├── ARDUINO_MEGA │ │ └── board.mk │ ├── simulator │ │ ├── board.mk │ │ ├── board.h │ │ └── board.c │ ├── OLIMEX_AVR_CAN │ │ └── board.mk │ ├── ST_EVB_SPC560P │ │ └── board.mk │ ├── ST_EVB_SPC563M │ │ └── board.mk │ ├── ST_EVB_SPC564A │ │ └── board.mk │ ├── ST_EVB_SPC56EL │ │ └── board.mk │ ├── NGX_BB_LPC11U14 │ │ └── board.mk │ ├── OLIMEX_LPC-P1227 │ │ └── board.mk │ ├── OLIMEX_LPC_P1343 │ │ └── board.mk │ ├── OLIMEX_SAM7_P256 │ │ └── board.mk │ ├── OLIMEX_STM32_LCD │ │ └── board.mk │ ├── ST_EVB_SPC560BC │ │ └── board.mk │ ├── ST_NUCLEO_F030R8 │ │ └── board.mk │ ├── ST_NUCLEO_F103RB │ │ └── board.mk │ ├── ST_NUCLEO_F401RE │ │ └── board.mk │ ├── ST_NUCLEO_L152RE │ │ └── board.mk │ ├── ST_STM3210C_EVAL │ │ └── board.mk │ ├── ST_STM3210E_EVAL │ │ └── board.mk │ ├── ST_STM3220G_EVAL │ │ └── board.mk │ ├── OLIMEX_AVR_MT_128 │ │ └── board.mk │ ├── OLIMEX_SAM7_EX256 │ │ └── board.mk │ ├── OLIMEX_STM32_E407 │ │ └── board.mk │ ├── OLIMEX_STM32_H103 │ │ └── board.mk │ ├── OLIMEX_STM32_H407 │ │ └── board.mk │ ├── OLIMEX_STM32_P103 │ │ └── board.mk │ ├── OLIMEX_STM32_P107 │ │ └── board.mk │ ├── OLIMEX_STM32_P407 │ │ └── board.mk │ ├── ST_STM32373C_EVAL │ │ └── board.mk │ ├── OLIMEX_LPC_P2148 │ │ ├── board.mk │ │ └── buzzer.h │ ├── OLIMEX_MSP430_P1611 │ │ └── board.mk │ ├── OLIMEX_STM32_103STK │ │ └── board.mk │ ├── ST_STM32L_DISCOVERY │ │ └── board.mk │ ├── EA_LPCXPRESSO_BB_1114 │ │ └── board.mk │ ├── EA_LPCXPRESSO_BB_1343 │ │ └── board.mk │ ├── EA_LPCXPRESSO_LPC812 │ │ └── board.mk │ ├── MAPLEMINI_STM32_F103 │ │ └── board.mk │ ├── ST_INEMO_M1_DISCOVERY │ │ └── board.mk │ ├── ST_STM32F0_DISCOVERY │ │ └── board.mk │ ├── ST_STM32F3_DISCOVERY │ │ └── board.mk │ ├── ST_STM32F4_DISCOVERY │ │ └── board.mk │ ├── ST_STM32VL_DISCOVERY │ │ └── board.mk │ ├── EA_LPCXPRESSO_BB_11U14 │ │ └── board.mk │ ├── OLIMEX_STM32_E407_REV_D │ │ └── board.mk │ ├── ST_STM32F401C_DISCOVERY │ │ └── board.mk │ ├── ST_STM32F429I_DISCOVERY │ │ └── board.mk │ ├── NONSTANDARD_STM32F4_BARTHESS1 │ │ └── board.mk │ └── readme.txt ├── test │ ├── coverage │ │ └── readme.txt │ ├── test.mk │ ├── testbmk.h │ ├── testdyn.h │ ├── testevt.h │ ├── testmsg.h │ ├── testmtx.h │ ├── testsem.h │ ├── testthd.h │ ├── testheap.h │ ├── testmbox.h │ ├── testpools.h │ └── testqueues.h ├── testhal │ ├── STM32F4xx │ │ ├── IRQ_STORM │ │ │ ├── iar │ │ │ │ └── ch.eww │ │ │ └── readme.txt │ │ ├── IRQ_STORM_FPU │ │ │ ├── iar │ │ │ │ └── ch.eww │ │ │ ├── extfunc.c │ │ │ └── readme.txt │ │ ├── SDC │ │ │ ├── csd.txt │ │ │ └── readme.txt │ │ ├── USB_CDC │ │ │ └── readme.txt │ │ ├── CAN │ │ │ └── readme.txt │ │ ├── RTC_FATTIME │ │ │ └── readme.txt │ │ ├── EXT │ │ │ └── readme.txt │ │ ├── GPT │ │ │ └── readme.txt │ │ ├── SPI │ │ │ └── readme.txt │ │ ├── PWM-ICU │ │ │ └── readme.txt │ │ └── ADC │ │ │ └── readme.txt │ ├── STM32F1xx │ │ ├── I2C │ │ │ ├── fake.h │ │ │ ├── i2c_pns.h │ │ │ └── tmp75.h │ │ ├── ADC │ │ │ └── readme.txt │ │ ├── CAN │ │ │ └── readme.txt │ │ ├── EXT │ │ │ └── readme.txt │ │ ├── GPT │ │ │ └── readme.txt │ │ ├── SPI │ │ │ └── readme.txt │ │ ├── UART │ │ │ └── readme.txt │ │ ├── SDC │ │ │ └── readme.txt │ │ ├── USB_CDC │ │ │ └── readme.txt │ │ ├── RTC_FATTIME │ │ │ └── readme.txt │ │ ├── USB_CDC_F107 │ │ │ └── readme.txt │ │ ├── IRQ_STORM │ │ │ └── readme.txt │ │ └── PWM-ICU │ │ │ └── readme.txt │ ├── SPC563Mxx │ │ └── ADC │ │ │ ├── readme.txt │ │ │ └── .project │ ├── SPC560Pxx │ │ └── PWM-ICU │ │ │ ├── readme.txt │ │ │ └── .project │ ├── SPC56ELxx │ │ └── PWM-ICU │ │ │ ├── readme.txt │ │ │ └── .project │ ├── common │ │ └── testbuild │ │ │ ├── main.c │ │ │ ├── .project │ │ │ └── board.h │ ├── LPC11xx │ │ └── IRQ_STORM │ │ │ └── readme.txt │ ├── LPC122x │ │ └── IRQ_STORM │ │ │ └── readme.txt │ ├── LPC13xx │ │ └── IRQ_STORM │ │ │ └── readme.txt │ ├── STM32F30x │ │ ├── USB_CDC │ │ │ └── readme.txt │ │ ├── CAN │ │ │ └── readme.txt │ │ ├── EXT │ │ │ └── readme.txt │ │ ├── SPI │ │ │ └── readme.txt │ │ ├── PWM-ICU │ │ │ └── readme.txt │ │ ├── ADC │ │ │ └── readme.txt │ │ └── ADC_DUAL │ │ │ └── readme.txt │ ├── STM32F37x │ │ ├── CAN │ │ │ ├── readme.txt │ │ │ └── .project │ │ ├── USB_CDC │ │ │ └── readme.txt │ │ ├── I2C │ │ │ ├── readme.txt │ │ │ └── .project │ │ ├── EXT │ │ │ ├── readme.txt │ │ │ └── .project │ │ ├── ADC │ │ │ ├── readme.txt │ │ │ └── .project │ │ ├── SDADC │ │ │ └── readme.txt │ │ ├── PWM-ICU │ │ │ └── readme.txt │ │ ├── SPI │ │ │ ├── readme.txt │ │ │ └── .project │ │ └── UART │ │ │ └── .project │ ├── STM32F0xx │ │ ├── EXT │ │ │ ├── readme.txt │ │ │ └── .project │ │ ├── SPI │ │ │ └── readme.txt │ │ ├── PWM-ICU │ │ │ └── readme.txt │ │ ├── IRQ_STORM │ │ │ └── readme.txt │ │ └── ADC │ │ │ ├── readme.txt │ │ │ └── .project │ └── STM32L1xx │ │ ├── EXT │ │ ├── readme.txt │ │ └── .project │ │ ├── PWM-ICU │ │ └── readme.txt │ │ ├── IRQ_STORM │ │ └── readme.txt │ │ ├── SPI │ │ ├── readme.txt │ │ └── .project │ │ └── ADC │ │ ├── readme.txt │ │ └── .project └── documentation.html ├── heatshrink ├── heatshrink.mk ├── heatshrinkif.h ├── heatshrink_common.h ├── LICENSE └── heatshrink_config.h └── crc.h /README.md: -------------------------------------------------------------------------------- 1 | # bldc-bootloader 2 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/docs/rsc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/docs/rsc/logo.png -------------------------------------------------------------------------------- /ChibiOS_2.6.6/docs/rsc/workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/docs/rsc/workspace.png -------------------------------------------------------------------------------- /ChibiOS_2.6.6/docs/html/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/docs/html/logo_small.png -------------------------------------------------------------------------------- /ChibiOS_2.6.6/demos/AVR-AT90CANx-GCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/demos/AVR-AT90CANx-GCC/Makefile -------------------------------------------------------------------------------- /ChibiOS_2.6.6/demos/AVR-ATmega128-GCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/demos/AVR-ATmega128-GCC/Makefile -------------------------------------------------------------------------------- /ChibiOS_2.6.6/demos/ARMCM4-SAM4L/ARMCM4-SAM4L.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/demos/ARMCM4-SAM4L/ARMCM4-SAM4L.7z -------------------------------------------------------------------------------- /ChibiOS_2.6.6/demos/AVR-ArduinoMega-GCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/demos/AVR-ArduinoMega-GCC/Makefile -------------------------------------------------------------------------------- /heatshrink/heatshrink.mk: -------------------------------------------------------------------------------- 1 | HEATSHRINKSRC = heatshrink/heatshrink_decoder.c \ 2 | heatshrink/heatshrink_encoder.c 3 | 4 | HEATSHRINKINC = heatshrink 5 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/os/hal/platforms/SPC560Pxx/xpc560p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/os/hal/platforms/SPC560Pxx/xpc560p.h -------------------------------------------------------------------------------- /ChibiOS_2.6.6/os/hal/platforms/SPC563Mxx/xpc563m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/os/hal/platforms/SPC563Mxx/xpc563m.h -------------------------------------------------------------------------------- /ChibiOS_2.6.6/os/hal/platforms/SPC564Axx/xpc564a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/os/hal/platforms/SPC564Axx/xpc564a.h -------------------------------------------------------------------------------- /ChibiOS_2.6.6/os/hal/platforms/STM32F30x/stm32f30x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/os/hal/platforms/STM32F30x/stm32f30x.h -------------------------------------------------------------------------------- /ChibiOS_2.6.6/os/hal/platforms/STM32F37x/stm32f37x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/os/hal/platforms/STM32F37x/stm32f37x.h -------------------------------------------------------------------------------- /ChibiOS_2.6.6/os/hal/platforms/STM32F4xx/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/os/hal/platforms/STM32F4xx/stm32f4xx.h -------------------------------------------------------------------------------- /ChibiOS_2.6.6/os/hal/platforms/STM32L1xx/stm32l1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/os/hal/platforms/STM32L1xx/stm32l1xx.h -------------------------------------------------------------------------------- /ChibiOS_2.6.6/ext/stdperiph_stm32f4/src/stm32f4xx_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/ext/stdperiph_stm32f4/src/stm32f4xx_flash.c -------------------------------------------------------------------------------- /ChibiOS_2.6.6/ext/stdperiph_stm32f4/src/stm32f4xx_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/bldc-bootloader/HEAD/ChibiOS_2.6.6/ext/stdperiph_stm32f4/src/stm32f4xx_rcc.c -------------------------------------------------------------------------------- /ChibiOS_2.6.6/os/various/cpp_wrappers/kernel.mk: -------------------------------------------------------------------------------- 1 | # C++ wrapper files. 2 | CHCPPSRC = ${CHIBIOS}/os/various/cpp_wrappers/ch.cpp 3 | 4 | CHCPPINC = ${CHIBIOS}/os/various/cpp_wrappers 5 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/os/ports/GCC/AVR/port.mk: -------------------------------------------------------------------------------- 1 | # List of the ChibiOS/RT AVR port files. 2 | PORTSRC = ${CHIBIOS}/os/ports/GCC/AVR/chcore.c 3 | 4 | PORTASM = 5 | 6 | PORTINC = ${CHIBIOS}/os/ports/GCC/AVR 7 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/os/ports/GCC/MSP430/port.mk: -------------------------------------------------------------------------------- 1 | # List of the ChibiOS/RT MSP430 port files. 2 | PORTSRC = 3 | 4 | PORTASM = ${CHIBIOS}/os/ports/GCC/MSP430/chcoreasm.s 5 | 6 | PORTINC = ${CHIBIOS}/os/ports/GCC/MSP430 7 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/os/ports/GCC/SIMIA32/port.mk: -------------------------------------------------------------------------------- 1 | # List of the ChibiOS/RT SIMIA32 port files. 2 | PORTSRC = ${CHIBIOS}/os/ports/GCC/SIMIA32/chcore.c 3 | 4 | PORTASM = 5 | 6 | PORTINC = ${CHIBIOS}/os/ports/GCC/SIMIA32 7 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ARDUINO_MEGA/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ARDUINO_MEGA/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ARDUINO_MEGA 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/simulator/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the simulator board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/simulator/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/simulator 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_AVR_CAN/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_AVR_CAN/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_AVR_CAN 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_EVB_SPC560P/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_EVB_SPC560P/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_EVB_SPC560P 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_EVB_SPC563M/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_EVB_SPC563M/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_EVB_SPC563M 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_EVB_SPC564A/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_EVB_SPC564A/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_EVB_SPC564A 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_EVB_SPC56EL/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_EVB_SPC56EL/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_EVB_SPC56EL 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/NGX_BB_LPC11U14/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/NGX_BB_LPC11U14/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/NGX_BB_LPC11U14 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_LPC-P1227/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_LPC-P1227/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_LPC-P1227 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_LPC_P1343/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_LPC_P1343/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_LPC_P1343 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_SAM7_P256/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_SAM7_P256/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_SAM7_P256 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_STM32_LCD/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_STM32_LCD/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_STM32_LCD 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_EVB_SPC560BC/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_EVB_SPC560BC/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_EVB_SPC560BC 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_NUCLEO_F030R8/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_NUCLEO_F030R8/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_NUCLEO_F030R8 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_NUCLEO_F103RB/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_NUCLEO_F103RB/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_NUCLEO_F103RB 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_NUCLEO_F401RE/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_NUCLEO_F401RE/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_NUCLEO_F401RE 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_NUCLEO_L152RE/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_NUCLEO_L152RE/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_NUCLEO_L152RE 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_STM3210C_EVAL/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_STM3210C_EVAL/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_STM3210C_EVAL 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_STM3210E_EVAL/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_STM3210E_EVAL/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_STM3210E_EVAL 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_STM3220G_EVAL/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_STM3220G_EVAL/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_STM3220G_EVAL 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_AVR_MT_128/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_AVR_MT_128/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_AVR_MT_128 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_SAM7_EX256/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_SAM7_EX256/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_SAM7_EX256 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_STM32_E407/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_STM32_E407/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_STM32_E407 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_STM32_H103/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_STM32_H103/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_STM32_H103 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_STM32_H407/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_STM32_H407/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_STM32_H407 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_STM32_P103/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_STM32_P103/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_STM32_P103 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_STM32_P107/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_STM32_P107/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_STM32_P107 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_STM32_P407/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_STM32_P407/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_STM32_P407 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_STM32373C_EVAL/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_STM32373C_EVAL/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_STM32373C_EVAL 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_LPC_P2148/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the mandatory board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_LPC_P2148/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_LPC_P2148 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_MSP430_P1611/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_MSP430_P1611/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_MSP430_P1611 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/OLIMEX_STM32_103STK/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/OLIMEX_STM32_103STK/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/OLIMEX_STM32_103STK 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_STM32L_DISCOVERY/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_STM32L_DISCOVERY/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_STM32L_DISCOVERY 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/EA_LPCXPRESSO_BB_1114/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/EA_LPCXPRESSO_BB_1114/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/EA_LPCXPRESSO_BB_1114 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/EA_LPCXPRESSO_BB_1343/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/EA_LPCXPRESSO_BB_1343/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/EA_LPCXPRESSO_BB_1343 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/EA_LPCXPRESSO_LPC812/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/EA_LPCXPRESSO_LPC812/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/EA_LPCXPRESSO_LPC812 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/MAPLEMINI_STM32_F103/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/MAPLEMINI_STM32_F103/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/MAPLEMINI_STM32_F103 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_INEMO_M1_DISCOVERY/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_INEMO_M1_DISCOVERY/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_INEMO_M1_DISCOVERY 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_STM32F0_DISCOVERY/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_STM32F0_DISCOVERY/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_STM32F0_DISCOVERY 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_STM32F3_DISCOVERY/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_STM32F3_DISCOVERY/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_STM32F3_DISCOVERY 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_STM32F4_DISCOVERY/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_STM32F4_DISCOVERY/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_STM32F4_DISCOVERY 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/boards/ST_STM32VL_DISCOVERY/board.mk: -------------------------------------------------------------------------------- 1 | # List of all the board related files. 2 | BOARDSRC = ${CHIBIOS}/boards/ST_STM32VL_DISCOVERY/board.c 3 | 4 | # Required include directories 5 | BOARDINC = ${CHIBIOS}/boards/ST_STM32VL_DISCOVERY 6 | -------------------------------------------------------------------------------- /ChibiOS_2.6.6/demos/ARMCM3-STM32F103/iar/ch.eww: -------------------------------------------------------------------------------- 1 | 2 | 3 |
$doxygenversion
3 |