mirror of
https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
synced 2025-02-04 16:28:10 +00:00
_MyConfig.h
This commit is contained in:
parent
199c254838
commit
dc9b84ea8b
@ -805,4 +805,4 @@ Commands from TX to module use values > 127 for command type
|
||||
data[1-22] Failsafe data, encoded like normal channel data, with the expection
|
||||
that 0 means hold for that channel and 2047 means no pulses
|
||||
|
||||
*/
|
||||
*/
|
||||
|
@ -38,8 +38,8 @@
|
||||
#include "_Config.h"
|
||||
|
||||
//Personal config file
|
||||
#if __has_include("_MyConfig.h")
|
||||
#include "_MyConfig.h"
|
||||
#if __has_include("_MyConfig.h") || defined(USE_MY_CONFIG)
|
||||
#include "_MyConfig.h"
|
||||
#endif
|
||||
|
||||
#include "Pins.h"
|
||||
@ -1589,4 +1589,4 @@ static uint32_t random_id(uint16_t address, uint8_t create_new)
|
||||
WDTCSR = 0; // Disable Watchdog interrupt
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
@ -17,6 +17,14 @@
|
||||
/** Multiprotocol module configuration file ***/
|
||||
/**********************************************/
|
||||
|
||||
/********************/
|
||||
/*** LOCAL CONFIG ***/
|
||||
/********************/
|
||||
//If you know parameters you want for sure to be enabled or disabled which survives in future, you can use a file named "_MyConfig.h".
|
||||
//An example is given within the file named "_MyConfig.h.example" which needs to be renamed if you want to use it.
|
||||
//To enable this config file remove the // from the line below. It's automatically loaded if the file exists for the AVR platform but not STM32...
|
||||
//#define USE_MY_CONFIG
|
||||
|
||||
/*******************/
|
||||
/*** TX SETTINGS ***/
|
||||
/*******************/
|
||||
|
Loading…
x
Reference in New Issue
Block a user