1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-17 05:15:25 +03:00

Generic pin output driver

This commit is contained in:
jflyper 2018-02-02 18:39:56 +09:00
parent 1a6964b6b7
commit 8f76a11081
12 changed files with 215 additions and 2 deletions

View file

@ -87,6 +87,7 @@
#include "pg/bus_i2c.h"
#include "pg/bus_spi.h"
#include "pg/flash.h"
#include "pg/pinio.h"
#include "pg/pg.h"
#include "pg/rx_pwm.h"
#include "pg/sdcard.h"
@ -533,6 +534,10 @@ void init(void)
servosFilterInit();
#endif
#ifdef USE_PINIO
pinioInit(pinioConfig());
#endif
LED1_ON;
LED0_OFF;
LED2_OFF;