remove dp_println()
This commit is contained in:
parent
1975fbe0dc
commit
c511a9432d
@ -97,7 +97,6 @@ void dp_init(bool verbose = false);
|
|||||||
void dp_shutdown(void);
|
void dp_shutdown(void);
|
||||||
void dp_message(const char *msg, int line, bool invers);
|
void dp_message(const char *msg, int line, bool invers);
|
||||||
void dp_drawPage(bool nextpage);
|
void dp_drawPage(bool nextpage);
|
||||||
void dp_println(void);
|
|
||||||
void dp_printf(const char *format, ...);
|
void dp_printf(const char *format, ...);
|
||||||
void dp_setFont(int font, int inv = 0);
|
void dp_setFont(int font, int inv = 0);
|
||||||
void dp_dump(uint8_t *pBuffer = NULL);
|
void dp_dump(uint8_t *pBuffer = NULL);
|
||||||
|
@ -95,17 +95,12 @@ void dp_init(bool verbose) {
|
|||||||
esp_chip_info(&chip_info);
|
esp_chip_info(&chip_info);
|
||||||
|
|
||||||
dp_setFont(MY_FONT_NORMAL);
|
dp_setFont(MY_FONT_NORMAL);
|
||||||
dp_printf("** PAXCOUNTER **");
|
dp_printf("** PAXCOUNTER **\r\n");
|
||||||
dp_println();
|
dp_printf("Software v%s\r\n", PROGVERSION);
|
||||||
dp_printf("Software v%s", PROGVERSION);
|
dp_printf("ESP32 %d cores\r\n", chip_info.cores);
|
||||||
dp_println();
|
dp_printf("Chip Rev.%d\r\n", chip_info.revision);
|
||||||
dp_printf("ESP32 %d cores", chip_info.cores);
|
dp_printf("WiFi%s%s\r\n", (chip_info.features & CHIP_FEATURE_BT) ? "/BT" : "",
|
||||||
dp_println();
|
|
||||||
dp_printf("Chip Rev.%d", chip_info.revision);
|
|
||||||
dp_println();
|
|
||||||
dp_printf("WiFi%s%s", (chip_info.features & CHIP_FEATURE_BT) ? "/BT" : "",
|
|
||||||
(chip_info.features & CHIP_FEATURE_BLE) ? "/BLE" : "");
|
(chip_info.features & CHIP_FEATURE_BLE) ? "/BLE" : "");
|
||||||
dp_println();
|
|
||||||
dp_printf("%dMB %s Flash", spi_flash_get_chip_size() / (1024 * 1024),
|
dp_printf("%dMB %s Flash", spi_flash_get_chip_size() / (1024 * 1024),
|
||||||
(chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "int." : "ext.");
|
(chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "int." : "ext.");
|
||||||
|
|
||||||
@ -130,8 +125,7 @@ void dp_init(bool verbose) {
|
|||||||
const int x_offset = QR_SCALEFACTOR * 29 + 14;
|
const int x_offset = QR_SCALEFACTOR * 29 + 14;
|
||||||
dp_setFont(MY_FONT_NORMAL);
|
dp_setFont(MY_FONT_NORMAL);
|
||||||
dp_setTextCursor(x_offset, 0);
|
dp_setTextCursor(x_offset, 0);
|
||||||
dp_printf("DEVEUI:");
|
dp_printf("DEVEUI:\r\n");
|
||||||
dp_println();
|
|
||||||
for (uint8_t i = 0; i <= 3; i++) {
|
for (uint8_t i = 0; i <= 3; i++) {
|
||||||
dp_setTextCursor(x_offset, i * 8 + 20);
|
dp_setTextCursor(x_offset, i * 8 + 20);
|
||||||
dp_printf("%4.4s", deveui + i * 4);
|
dp_printf("%4.4s", deveui + i * 4);
|
||||||
@ -248,7 +242,7 @@ void dp_drawPage(bool nextpage) {
|
|||||||
#else
|
#else
|
||||||
dp_printf("Sniffer disabled");
|
dp_printf("Sniffer disabled");
|
||||||
#endif
|
#endif
|
||||||
dp_println();
|
dp_printf("\r\n");
|
||||||
|
|
||||||
// line 4: Battery + GPS status + Wifi channel
|
// line 4: Battery + GPS status + Wifi channel
|
||||||
// B:a.bcV Sats:ab ch:ab
|
// B:a.bcV Sats:ab ch:ab
|
||||||
@ -260,14 +254,12 @@ void dp_drawPage(bool nextpage) {
|
|||||||
#else
|
#else
|
||||||
dp_printf(" ");
|
dp_printf(" ");
|
||||||
#endif
|
#endif
|
||||||
dp_printf("chan:%02u", channel);
|
dp_printf("chan:%02u\r\n", channel);
|
||||||
dp_println();
|
|
||||||
|
|
||||||
// line 5: RSSI limiter + free memory
|
// line 5: RSSI limiter + free memory
|
||||||
// RLIM:abcd Mem:abcdKB
|
// RLIM:abcd Mem:abcdKB
|
||||||
dp_printf(!cfg.rssilimit ? "RLIM:off " : "RLIM:%-4d", cfg.rssilimit);
|
dp_printf(!cfg.rssilimit ? "RLIM:off " : "RLIM:%-4d", cfg.rssilimit);
|
||||||
dp_printf(" Mem:%4dKB", getFreeRAM() / 1024);
|
dp_printf(" Mem:%4dKB\r\n", getFreeRAM() / 1024);
|
||||||
dp_println();
|
|
||||||
|
|
||||||
// line 6: time + date
|
// line 6: time + date
|
||||||
// Wed Jan 12 21:49:08 *
|
// Wed Jan 12 21:49:08 *
|
||||||
@ -282,12 +274,11 @@ void dp_drawPage(bool nextpage) {
|
|||||||
// display inverse timeState if clock controller is enabled
|
// display inverse timeState if clock controller is enabled
|
||||||
#if (defined HAS_DCF77) || (defined HAS_IF482)
|
#if (defined HAS_DCF77) || (defined HAS_IF482)
|
||||||
dp_setFont(MY_FONT_SMALL, 1);
|
dp_setFont(MY_FONT_SMALL, 1);
|
||||||
dp_printf("%c", timeState);
|
dp_printf("%c\r\n", timeState);
|
||||||
dp_setFont(MY_FONT_SMALL, 0);
|
dp_setFont(MY_FONT_SMALL, 0);
|
||||||
#else
|
#else
|
||||||
dp_printf("%c", timeState);
|
dp_printf("%c\r\n", timeState);
|
||||||
#endif
|
#endif
|
||||||
dp_println();
|
|
||||||
#endif // TIME_SYNC_INTERVAL
|
#endif // TIME_SYNC_INTERVAL
|
||||||
|
|
||||||
// line 7: LMIC status
|
// line 7: LMIC status
|
||||||
@ -318,15 +309,11 @@ void dp_drawPage(bool nextpage) {
|
|||||||
|
|
||||||
dp_setFont(MY_FONT_SMALL);
|
dp_setFont(MY_FONT_SMALL);
|
||||||
dp_setTextCursor();
|
dp_setTextCursor();
|
||||||
dp_printf("Net:%06X Pwr:%-2d", LMIC.netid & 0x001FFFFF, LMIC.radio_txpow);
|
dp_printf("Net:%06X Pwr:%-2d\r\n", LMIC.netid & 0x001FFFFF, LMIC.radio_txpow);
|
||||||
dp_println();
|
dp_printf("Dev:%08X DR:%1d\r\n", LMIC.devaddr, LMIC.datarate);
|
||||||
dp_printf("Dev:%08X DR:%1d", LMIC.devaddr, LMIC.datarate);
|
dp_printf("ChMsk:%04X Nonce:%04X\r\n", LMIC.channelMap, LMIC.devNonce);
|
||||||
dp_println();
|
dp_printf("fUp:%-6d fDn:%-6d\r\n", LMIC.seqnoUp ? LMIC.seqnoUp - 1 : 0,
|
||||||
dp_printf("ChMsk:%04X Nonce:%04X", LMIC.channelMap, LMIC.devNonce);
|
|
||||||
dp_println();
|
|
||||||
dp_printf("fUp:%-6d fDn:%-6d", LMIC.seqnoUp ? LMIC.seqnoUp - 1 : 0,
|
|
||||||
LMIC.seqnoDn ? LMIC.seqnoDn - 1 : 0);
|
LMIC.seqnoDn ? LMIC.seqnoDn - 1 : 0);
|
||||||
dp_println();
|
|
||||||
dp_printf("SNR:%-5d RSSI:%-5d", (LMIC.snr + 2) / 4, LMIC.rssi);
|
dp_printf("SNR:%-5d RSSI:%-5d", (LMIC.snr + 2) / 4, LMIC.rssi);
|
||||||
|
|
||||||
dp_dump();
|
dp_dump();
|
||||||
@ -349,9 +336,8 @@ void dp_drawPage(bool nextpage) {
|
|||||||
// show latitude and longitude
|
// show latitude and longitude
|
||||||
dp_setFont(MY_FONT_STRETCHED);
|
dp_setFont(MY_FONT_STRETCHED);
|
||||||
dp_setTextCursor();
|
dp_setTextCursor();
|
||||||
dp_printf("%c%09.6f", gps.location.rawLat().negative ? 'S' : 'N',
|
dp_printf("%c%09.6f\r\n", gps.location.rawLat().negative ? 'S' : 'N',
|
||||||
gps.location.lat());
|
gps.location.lat());
|
||||||
dp_println();
|
|
||||||
dp_printf("%c%09.6f", gps.location.rawLng().negative ? 'W' : 'E',
|
dp_printf("%c%09.6f", gps.location.rawLng().negative ? 'W' : 'E',
|
||||||
gps.location.lng());
|
gps.location.lng());
|
||||||
dp_dump();
|
dp_dump();
|
||||||
@ -366,13 +352,10 @@ void dp_drawPage(bool nextpage) {
|
|||||||
#if (HAS_BME)
|
#if (HAS_BME)
|
||||||
dp_setFont(MY_FONT_STRETCHED);
|
dp_setFont(MY_FONT_STRETCHED);
|
||||||
dp_setTextCursor(0, 0);
|
dp_setTextCursor(0, 0);
|
||||||
dp_printf("TMP: %-6.1f", bme_status.temperature);
|
dp_printf("TMP: %-6.1f\r\n", bme_status.temperature);
|
||||||
dp_println();
|
dp_printf("HUM: %-6.1f\r\n", bme_status.humidity);
|
||||||
dp_printf("HUM: %-6.1f", bme_status.humidity);
|
dp_printf("PRE: %-6.1f\r\n", bme_status.pressure);
|
||||||
dp_println();
|
|
||||||
dp_printf("PRE: %-6.1f", bme_status.pressure);
|
|
||||||
#ifdef HAS_BME680
|
#ifdef HAS_BME680
|
||||||
dp_println();
|
|
||||||
dp_printf("IAQ: %-6.0f", bme_status.iaq);
|
dp_printf("IAQ: %-6.0f", bme_status.iaq);
|
||||||
#endif
|
#endif
|
||||||
dp_dump();
|
dp_dump();
|
||||||
@ -393,8 +376,7 @@ void dp_drawPage(bool nextpage) {
|
|||||||
dp_printf("Timeofday:");
|
dp_printf("Timeofday:");
|
||||||
dp_setTextCursor(0, 26);
|
dp_setTextCursor(0, 26);
|
||||||
dp_setFont(MY_FONT_LARGE);
|
dp_setFont(MY_FONT_LARGE);
|
||||||
dp_printf("%.8s", strftime_buf);
|
dp_printf("%.8s\r\n", strftime_buf);
|
||||||
dp_println();
|
|
||||||
dp_setFont(MY_FONT_SMALL);
|
dp_setFont(MY_FONT_SMALL);
|
||||||
dp_printf("%21.1f", uptime() / 1000.0);
|
dp_printf("%21.1f", uptime() / 1000.0);
|
||||||
dp_dump();
|
dp_dump();
|
||||||
@ -466,14 +448,6 @@ void dp_setFont(int font, int inv) {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void dp_println(void) {
|
|
||||||
#if (HAS_DISPLAY) == 1
|
|
||||||
oled.println();
|
|
||||||
#elif (HAS_DISPLAY) == 2
|
|
||||||
tft.println();
|
|
||||||
#endif
|
|
||||||
};
|
|
||||||
|
|
||||||
void dp_printf(const char *format, ...) {
|
void dp_printf(const char *format, ...) {
|
||||||
char loc_buf[64];
|
char loc_buf[64];
|
||||||
char *temp = loc_buf;
|
char *temp = loc_buf;
|
||||||
|
24
src/ota.cpp
24
src/ota.cpp
@ -50,18 +50,13 @@ void start_ota_update() {
|
|||||||
#ifdef HAS_DISPLAY
|
#ifdef HAS_DISPLAY
|
||||||
|
|
||||||
dp_setup();
|
dp_setup();
|
||||||
|
dp_setFont(MY_FONT_NORMAL);
|
||||||
dp_printf("SOFTWARE UPDATE");
|
dp_printf("SOFTWARE UPDATE\r\n");
|
||||||
dp_println();
|
dp_printf("WiFi connect ..\r\n");
|
||||||
dp_printf("WiFi connect ..");
|
dp_printf("Has Update? ..\r\n");
|
||||||
dp_println();
|
dp_printf("Fetching ..\r\n");
|
||||||
dp_printf("Has Update? ..");
|
dp_printf("Downloading ..\r\n");
|
||||||
dp_println();
|
dp_printf("Rebooting ..\r\n");
|
||||||
dp_printf("Fetching ..");
|
|
||||||
dp_println();
|
|
||||||
dp_printf("Downloading ..");
|
|
||||||
dp_println();
|
|
||||||
dp_printf("Rebooting ..");
|
|
||||||
dp_dump();
|
dp_dump();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -330,13 +325,12 @@ retry:
|
|||||||
void ota_display(const uint8_t row, const std::string status,
|
void ota_display(const uint8_t row, const std::string status,
|
||||||
const std::string msg) {
|
const std::string msg) {
|
||||||
#ifdef HAS_DISPLAY
|
#ifdef HAS_DISPLAY
|
||||||
dp_setFont(MY_FONT_SMALL);
|
dp_setTextCursor(14 * 8, row * 8);
|
||||||
dp_setTextCursor(14, row * 8);
|
|
||||||
dp_printf(status.substr(0, 2).c_str());
|
dp_printf(status.substr(0, 2).c_str());
|
||||||
if (!msg.empty()) {
|
if (!msg.empty()) {
|
||||||
dp_printf(" ");
|
dp_printf(" ");
|
||||||
dp_printf(msg.substr(0, 16).c_str());
|
dp_printf(msg.substr(0, 16).c_str());
|
||||||
dp_println();
|
// dp_printf("\r\n");
|
||||||
}
|
}
|
||||||
dp_dump();
|
dp_dump();
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user