1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 01:35:41 +03:00

Drop softpwm option

Also separates PG related code to pg directory.
This commit is contained in:
jflyper 2018-02-04 12:29:22 +09:00
parent 8738e7d623
commit 86149361ab
7 changed files with 87 additions and 121 deletions

View file

@ -118,6 +118,7 @@ extern uint8_t __config_end;
#include "pg/beeper_dev.h"
#include "pg/bus_i2c.h"
#include "pg/bus_spi.h"
#include "pg/camera_control.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "pg/rx_pwm.h"

View file

@ -67,6 +67,7 @@
#include "pg/max7456.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "pg/camera_control.h"
#include "pg/rx_pwm.h"
#include "pg/sdcard.h"
#include "pg/vcd.h"
@ -229,7 +230,6 @@ static const char * const lookupTableGyroLpf[] = {
#ifdef USE_CAMERA_CONTROL
static const char * const lookupTableCameraControlMode[] = {
"HARDWARE_PWM",
"SOFTWARE_PWM",
"DAC"
};
#endif