mirror of
https://github.com/markqvist/RNode_Firmware.git
synced 2024-10-01 03:15:39 -04:00
Cleanup
This commit is contained in:
parent
a4ecc0d6f3
commit
59e1836975
2
Config.h
2
Config.h
@ -20,7 +20,7 @@
|
|||||||
#define CONFIG_H
|
#define CONFIG_H
|
||||||
|
|
||||||
#define MAJ_VERS 0x01
|
#define MAJ_VERS 0x01
|
||||||
#define MIN_VERS 0x4a
|
#define MIN_VERS 0x4b
|
||||||
|
|
||||||
#define MODE_HOST 0x11
|
#define MODE_HOST 0x11
|
||||||
#define MODE_TNC 0x12
|
#define MODE_TNC 0x12
|
||||||
|
4
Makefile
4
Makefile
@ -175,8 +175,8 @@ upload-rnode_ng_21:
|
|||||||
arduino-cli upload -p /dev/ttyACM0 --fqbn esp32:esp32:ttgo-lora32
|
arduino-cli upload -p /dev/ttyACM0 --fqbn esp32:esp32:ttgo-lora32
|
||||||
@sleep 1
|
@sleep 1
|
||||||
rnodeconf /dev/ttyACM0 --firmware-hash $$(./partition_hashes ./build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin)
|
rnodeconf /dev/ttyACM0 --firmware-hash $$(./partition_hashes ./build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin)
|
||||||
#@sleep 3
|
@sleep 3
|
||||||
#python ./Release/esptool/esptool.py --chip esp32 --port /dev/ttyACM0 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x210000 ./Release/console_image.bin
|
python ./Release/esptool/esptool.py --chip esp32 --port /dev/ttyACM0 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x210000 ./Release/console_image.bin
|
||||||
|
|
||||||
upload-t3s3:
|
upload-t3s3:
|
||||||
@echo
|
@echo
|
||||||
|
@ -1372,6 +1372,7 @@ void sleep_now() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void button_event(uint8_t event, unsigned long duration) {
|
void button_event(uint8_t event, unsigned long duration) {
|
||||||
|
#if MCU_VARIANT == MCU_ESP32
|
||||||
display_unblank();
|
display_unblank();
|
||||||
if (duration > 6000) {
|
if (duration > 6000) {
|
||||||
bt_enable_pairing();
|
bt_enable_pairing();
|
||||||
@ -1389,6 +1390,7 @@ void button_event(uint8_t event, unsigned long duration) {
|
|||||||
bt_stop();
|
bt_stop();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
volatile bool serial_polling = false;
|
volatile bool serial_polling = false;
|
||||||
|
Binary file not shown.
@ -49,6 +49,8 @@ uint8_t eeprom_read(uint32_t mapped_addr);
|
|||||||
|
|
||||||
#if HAS_DISPLAY == true
|
#if HAS_DISPLAY == true
|
||||||
#include "Display.h"
|
#include "Display.h"
|
||||||
|
#else
|
||||||
|
void display_unblank() {}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAS_BLUETOOTH == true || HAS_BLE == true
|
#if HAS_BLUETOOTH == true || HAS_BLE == true
|
||||||
@ -1439,6 +1441,7 @@ void da_conf_save(uint8_t dadr) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void db_conf_save(uint8_t val) {
|
void db_conf_save(uint8_t val) {
|
||||||
|
#if HAS_DISPLAY
|
||||||
if (val == 0x00) {
|
if (val == 0x00) {
|
||||||
display_blanking_enabled = false;
|
display_blanking_enabled = false;
|
||||||
} else {
|
} else {
|
||||||
@ -1447,6 +1450,7 @@ void db_conf_save(uint8_t val) {
|
|||||||
}
|
}
|
||||||
eeprom_update(eeprom_addr(ADDR_CONF_BSET), CONF_OK_BYTE);
|
eeprom_update(eeprom_addr(ADDR_CONF_BSET), CONF_OK_BYTE);
|
||||||
eeprom_update(eeprom_addr(ADDR_CONF_DBLK), val);
|
eeprom_update(eeprom_addr(ADDR_CONF_DBLK), val);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void np_int_conf_save(uint8_t p_int) {
|
void np_int_conf_save(uint8_t p_int) {
|
||||||
|
Loading…
Reference in New Issue
Block a user