Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/main/target/FLYWOOF405PRO/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@ void targetConfiguration(void)

timerOverridesMutable(timer2id(TIM3))->outputMode = OUTPUT_MODE_MOTORS;
timerOverridesMutable(timer2id(TIM2))->outputMode = OUTPUT_MODE_MOTORS;

// Pinio Box params as per manufacturer specification
pinioBoxConfigMutable()->permanentId[0] = BOX_PERMANENT_ID_USER1;
pinioBoxConfigMutable()->permanentId[1] = BOX_PERMANENT_ID_USER2;
}
6 changes: 6 additions & 0 deletions src/main/target/FLYWOOF405PRO/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,12 @@
#define CURRENT_METER_ADC_CHANNEL ADC_CHN_2
#define RSSI_ADC_CHANNEL ADC_CHN_3

// *************** PINIO ***********************
#define USE_PINIO
#define USE_PINIOBOX
#define PINIO1_PIN PD6
#define PINIO2_PIN PC8

// *************** LED2812 ************************
#define USE_LED_STRIP
#define WS2811_PIN PA9
Expand Down