mirror of
https://github.com/opentx/opentx.git
synced 2025-07-15 20:35:17 +03:00
Fixes
This commit is contained in:
parent
917aa7b1ed
commit
3d8641e3e1
2 changed files with 1 additions and 2 deletions
|
@ -624,7 +624,6 @@ void sportUpdatePowerOff();
|
||||||
#define DEBUG_BAUDRATE 115200
|
#define DEBUG_BAUDRATE 115200
|
||||||
#endif
|
#endif
|
||||||
#if defined(AUX_SERIAL_GPIO)
|
#if defined(AUX_SERIAL_GPIO)
|
||||||
#define DEBUG_BAUDRATE 115200
|
|
||||||
extern uint8_t auxSerialMode;
|
extern uint8_t auxSerialMode;
|
||||||
void auxSerialInit(unsigned int mode, unsigned int protocol);
|
void auxSerialInit(unsigned int mode, unsigned int protocol);
|
||||||
void auxSerialPutc(char c);
|
void auxSerialPutc(char c);
|
||||||
|
|
|
@ -88,7 +88,7 @@ def build(board, translation, srcdir):
|
||||||
os.mkdir("output")
|
os.mkdir("output")
|
||||||
path = tempfile.mkdtemp()
|
path = tempfile.mkdtemp()
|
||||||
os.chdir(path)
|
os.chdir(path)
|
||||||
command = "cmake %s -DTRANSLATIONS=%s -DIMRC_RELEASE=YES -DTEST_BUILD_WARNING=YES %s" % (cmake_options, translation, srcdir)
|
command = "cmake %s -DTRANSLATIONS=%s -DIMRC_RELEASE=YES -DGHOST=YES -DTEST_BUILD_WARNING=YES %s" % (cmake_options, translation, srcdir)
|
||||||
print(command)
|
print(command)
|
||||||
os.system(command)
|
os.system(command)
|
||||||
os.system("make firmware -j16")
|
os.system("make firmware -j16")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue