1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 08:15:30 +03:00
betaflight/src
2013-08-28 01:26:10 +00:00
..
baseflight_startups Initial support for FY90Q hardware 2012-04-08 14:46:50 +00:00
board.h Software serial implementation. Compile with SOFTSERIAL_19200_LOOPBACK to test. Without the define the implementation will have no effect. Next step is to add a 'feature' to enable softserial and settings for the baud rate. Note, only READ is currently supported, write will come later. The highlevel api calls are used in main.c. Uart implementation needs cleanup to make serial port code generic, see uart files for details. 2013-08-28 01:26:10 +00:00
buzzer.c Applied patch from trunet for running at 64MHz off HSI for broken Chinese kcopter clones 2012-10-06 14:40:24 +00:00
cli.c improved altitude hold thanks to Luggi09 2013-08-24 14:57:26 +00:00
config.c reload GPS pids on each eeprom read 2013-08-27 07:22:48 +00:00
drv_adc.c implemented using one of RC inputs as ADC channel for power meter. 2012-10-19 02:43:27 +00:00
drv_adc.h implemented using one of RC inputs as ADC channel for power meter. 2012-10-19 02:43:27 +00:00
drv_adc_fy90q.c begin initial merge of 2.2 features 2013-03-14 14:03:30 +00:00
drv_adxl345.c a couple optimizations for dynamic HSE frequency - moved SetSysClock() to run after reset vector + bss init, and changed rcc which used hardcoded HSE_VALUE. 2013-07-02 00:58:50 +00:00
drv_adxl345.h fixed acczero offsets to 0 on initial eeprom cleanup 2012-04-07 15:29:00 +00:00
drv_bmp085.c a couple optimizations for dynamic HSE frequency - moved SetSysClock() to run after reset vector + bss init, and changed rcc which used hardcoded HSE_VALUE. 2013-07-02 00:58:50 +00:00
drv_bmp085.h cleaned up bmp085 driver 2012-08-20 10:25:10 +00:00
drv_gpio.c initial pass at gpio cleanup. removed almost all dependency on stdperiphlib (remaining exti). 2013-06-29 14:09:54 +00:00
drv_gpio.h oops! had pin definition wrong for Pin_0 and Pin_1, was using drv_gpio in another project and noticed it wasn't working very well :) 2013-08-20 11:44:49 +00:00
drv_hcsr04.c fixed Makefile to build w/new drivers (thanks Hydra) 2013-08-19 23:29:20 +00:00
drv_hcsr04.h fixed Makefile to build w/new drivers (thanks Hydra) 2013-08-19 23:29:20 +00:00
drv_hmc5883l.c new SPI2 driver w/testcase 2013-07-02 02:52:33 +00:00
drv_hmc5883l.h corrected magnetometer alignment bug found by CrashPilot1000 - during mag calibration, axes must be swapped per sensor alignment, which didn't happen. 2013-06-12 02:45:56 +00:00
drv_i2c.c a couple optimizations for dynamic HSE frequency - moved SetSysClock() to run after reset vector + bss init, and changed rcc which used hardcoded HSE_VALUE. 2013-07-02 00:58:50 +00:00
drv_i2c.h added i2cWriteBuffer() for ledring stuff 2012-03-13 15:32:38 +00:00
drv_i2c_soft.c Separate timer code from PWM/PPM code. The method of looking up a callback is now generic which means other (forthcoming) code can configure callback handlers. 2013-08-25 12:45:36 +00:00
drv_l3g4200d.c begin initial merge of 2.2 features 2013-03-14 14:03:30 +00:00
drv_l3g4200d.h begin initial merge of 2.2 features 2013-03-14 14:03:30 +00:00
drv_ledring.c synced serial protocol to multiwii-dev 20120622 2012-06-30 13:20:53 +00:00
drv_ledring.h started adding ledring stuff (yawn). found out i2c was broken, stopped. 2012-03-13 10:49:23 +00:00
drv_mma845x.c a couple optimizations for dynamic HSE frequency - moved SetSysClock() to run after reset vector + bss init, and changed rcc which used hardcoded HSE_VALUE. 2013-07-02 00:58:50 +00:00
drv_mma845x.h oops, forgot to commit mma845x driver. 2012-05-19 03:07:00 +00:00
drv_mpu3050.c begin initial merge of 2.2 features 2013-03-14 14:03:30 +00:00
drv_mpu3050.h begin initial merge of 2.2 features 2013-03-14 14:03:30 +00:00
drv_mpu6050.c improved altitude hold thanks to Luggi09 2013-08-24 14:57:26 +00:00
drv_mpu6050.h begin initial merge of 2.2 features 2013-03-14 14:03:30 +00:00
drv_ms5611.c a couple optimizations for dynamic HSE frequency - moved SetSysClock() to run after reset vector + bss init, and changed rcc which used hardcoded HSE_VALUE. 2013-07-02 00:58:50 +00:00
drv_ms5611.h cleaned up bmp085 driver 2012-08-20 10:25:10 +00:00
drv_pwm.c Software serial implementation. Compile with SOFTSERIAL_19200_LOOPBACK to test. Without the define the implementation will have no effect. Next step is to add a 'feature' to enable softserial and settings for the baud rate. Note, only READ is currently supported, write will come later. The highlevel api calls are used in main.c. Uart implementation needs cleanup to make serial port code generic, see uart files for details. 2013-08-28 01:26:10 +00:00
drv_pwm.h Software serial implementation. Compile with SOFTSERIAL_19200_LOOPBACK to test. Without the define the implementation will have no effect. Next step is to add a 'feature' to enable softserial and settings for the baud rate. Note, only READ is currently supported, write will come later. The highlevel api calls are used in main.c. Uart implementation needs cleanup to make serial port code generic, see uart files for details. 2013-08-28 01:26:10 +00:00
drv_pwm_fy90q.c beginnings of cli editing support by cehteh; (still buggy) 2013-05-09 12:26:11 +00:00
drv_softserial.c Software serial implementation. Compile with SOFTSERIAL_19200_LOOPBACK to test. Without the define the implementation will have no effect. Next step is to add a 'feature' to enable softserial and settings for the baud rate. Note, only READ is currently supported, write will come later. The highlevel api calls are used in main.c. Uart implementation needs cleanup to make serial port code generic, see uart files for details. 2013-08-28 01:26:10 +00:00
drv_softserial.h Software serial implementation. Compile with SOFTSERIAL_19200_LOOPBACK to test. Without the define the implementation will have no effect. Next step is to add a 'feature' to enable softserial and settings for the baud rate. Note, only READ is currently supported, write will come later. The highlevel api calls are used in main.c. Uart implementation needs cleanup to make serial port code generic, see uart files for details. 2013-08-28 01:26:10 +00:00
drv_spi.c new SPI2 driver w/testcase 2013-07-02 02:52:33 +00:00
drv_spi.h new SPI2 driver w/testcase 2013-07-02 02:52:33 +00:00
drv_system.c fixed Makefile to build w/new drivers (thanks Hydra) 2013-08-19 23:29:20 +00:00
drv_system.h a couple optimizations for dynamic HSE frequency - moved SetSysClock() to run after reset vector + bss init, and changed rcc which used hardcoded HSE_VALUE. 2013-07-02 00:58:50 +00:00
drv_timer.c Software serial implementation. Compile with SOFTSERIAL_19200_LOOPBACK to test. Without the define the implementation will have no effect. Next step is to add a 'feature' to enable softserial and settings for the baud rate. Note, only READ is currently supported, write will come later. The highlevel api calls are used in main.c. Uart implementation needs cleanup to make serial port code generic, see uart files for details. 2013-08-28 01:26:10 +00:00
drv_timer.h Software serial implementation. Compile with SOFTSERIAL_19200_LOOPBACK to test. Without the define the implementation will have no effect. Next step is to add a 'feature' to enable softserial and settings for the baud rate. Note, only READ is currently supported, write will come later. The highlevel api calls are used in main.c. Uart implementation needs cleanup to make serial port code generic, see uart files for details. 2013-08-28 01:26:10 +00:00
drv_uart.c Software serial implementation. Compile with SOFTSERIAL_19200_LOOPBACK to test. Without the define the implementation will have no effect. Next step is to add a 'feature' to enable softserial and settings for the baud rate. Note, only READ is currently supported, write will come later. The highlevel api calls are used in main.c. Uart implementation needs cleanup to make serial port code generic, see uart files for details. 2013-08-28 01:26:10 +00:00
drv_uart.h Software serial implementation. Compile with SOFTSERIAL_19200_LOOPBACK to test. Without the define the implementation will have no effect. Next step is to add a 'feature' to enable softserial and settings for the baud rate. Note, only READ is currently supported, write will come later. The highlevel api calls are used in main.c. Uart implementation needs cleanup to make serial port code generic, see uart files for details. 2013-08-28 01:26:10 +00:00
gps.c reload GPS pids on each eeprom read 2013-08-27 07:22:48 +00:00
imu.c improved altitude hold thanks to Luggi09 2013-08-24 14:57:26 +00:00
main.c Software serial implementation. Compile with SOFTSERIAL_19200_LOOPBACK to test. Without the define the implementation will have no effect. Next step is to add a 'feature' to enable softserial and settings for the baud rate. Note, only READ is currently supported, write will come later. The highlevel api calls are used in main.c. Uart implementation needs cleanup to make serial port code generic, see uart files for details. 2013-08-28 01:26:10 +00:00
mixer.c rewritten drv_uart to suck slightly less 2013-08-22 07:48:07 +00:00
mw.c fixed Makefile to build w/new drivers (thanks Hydra) 2013-08-19 23:29:20 +00:00
mw.h reload GPS pids on each eeprom read 2013-08-27 07:22:48 +00:00
printf.c Fixed issue #15, new uart building under gcc toolchain, thanks! 2013-08-22 13:37:45 +00:00
printf.h added printf() support via SpareTimeLabs printf lib. this cleaned up some mess inside cli.c 2012-09-06 06:35:02 +00:00
sensors.c Software serial implementation. Compile with SOFTSERIAL_19200_LOOPBACK to test. Without the define the implementation will have no effect. Next step is to add a 'feature' to enable softserial and settings for the baud rate. Note, only READ is currently supported, write will come later. The highlevel api calls are used in main.c. Uart implementation needs cleanup to make serial port code generic, see uart files for details. 2013-08-28 01:26:10 +00:00
serial.c improved altitude hold thanks to Luggi09 2013-08-24 14:57:26 +00:00
spektrum.c rewritten drv_uart to suck slightly less 2013-08-22 07:48:07 +00:00
telemetry.c rewritten drv_uart to suck slightly less 2013-08-22 07:48:07 +00:00