5
5
----------------------------------------------------------------------------
6
6
This demo shows how to control and update several Tiny85 microcontrollers
7
7
running the Timonel bootloader from an ESP8266 master.
8
- It uses a serial console configured at 9600 N 8 1 for feedback.
8
+ It uses a serial console configured at 115200 N 8 1 for feedback.
9
9
----------------------------------------------------------------------------
10
- 2020-06-03 Gustavo Casanova
10
+ 2020-07-13 Gustavo Casanova
11
11
----------------------------------------------------------------------------
12
12
*/
13
13
31
31
32
32
#include " payload.h"
33
33
34
- #define USE_SERIAL Serial
35
- #define SDA 2 // I2C SDA pin - ESP8266 2 - ESP32 21
36
- #define SCL 0 // I2C SCL pin - ESP8266 0 - ESP32 22
37
- #define MAX_TWI_DEVS 28
38
- #define LOOP_COUNT 3
39
- #define T_SIGNATURE 84
40
-
41
34
// Global variables
42
35
uint8_t slave_address = 0 ;
43
36
uint8_t block_rx_size = 0 ;
@@ -49,7 +42,7 @@ void (*resetFunc)(void) = 0;
49
42
// Setup block
50
43
void setup () {
51
44
// Initialize the serial port for debugging
52
- USE_SERIAL.begin (9600 );
45
+ USE_SERIAL.begin (SERIAL_BPS );
53
46
ClrScr ();
54
47
PrintLogo ();
55
48
ShowHeader ();
@@ -196,7 +189,7 @@ void setup() {
196
189
USE_SERIAL.println (dev_info_arr[i].addr );
197
190
#endif // ARDUINO_ARCH_ESP8266 || ARDUINO_ESP32_DEV || ESP_PLATFORM
198
191
tml_pool[i]->GetStatus ();
199
- PrintStatus (* tml_pool[i]);
192
+ PrintStatus (tml_pool[i]);
200
193
}
201
194
}
202
195
ThreeStarDelay ();
@@ -242,7 +235,7 @@ void setup() {
242
235
USE_SERIAL.println (dev_info_arr[i].addr );
243
236
#endif // ARDUINO_ARCH_ESP8266 || ARDUINO_ESP32_DEV || ESP_PLATFORM
244
237
tml_pool[i]->GetStatus ();
245
- PrintStatus (* tml_pool[i]);
238
+ PrintStatus (tml_pool[i]);
246
239
delay (10 );
247
240
#if (ARDUINO_ARCH_ESP8266 || ARDUINO_ESP32_DEV || ESP_PLATFORM)
248
241
// // If the Timonel features support it, dump the device memory
@@ -393,11 +386,16 @@ void PrintLogo(void) {
393
386
}
394
387
395
388
// Function print Timonel instance status
396
- void PrintStatus (Timonel timonel) {
397
- Timonel::Status tml_status = timonel. GetStatus (); /* Get the instance id parameters received from the ATTiny85 */
398
- uint8_t twi_address = timonel. GetTwiAddress ();
389
+ Timonel::Status PrintStatus (Timonel * timonel) {
390
+ Timonel::Status tml_status = timonel-> GetStatus (); /* Get the instance id parameters received from the ATTiny85 */
391
+ uint8_t twi_address = timonel-> GetTwiAddress ();
399
392
uint8_t version_major = tml_status.version_major ;
400
393
uint8_t version_minor = tml_status.version_minor ;
394
+ uint16_t app_start = tml_status.application_start ;
395
+ uint8_t app_start_msb = ((tml_status.application_start >> 8 ) & 0xFF );
396
+ uint8_t app_start_lsb = (tml_status.application_start & 0xFF );
397
+ uint16_t trampoline = ((~(((app_start_lsb << 8 ) | app_start_msb) & 0xFFF )) + 1 );
398
+ trampoline = ((((tml_status.bootloader_start >> 1 ) - trampoline) & 0xFFF ) << 1 );
401
399
if ((tml_status.signature == T_SIGNATURE) && ((version_major != 0 ) || (version_minor != 0 ))) {
402
400
String version_mj_nick = " " ;
403
401
switch (version_major) {
@@ -419,70 +417,80 @@ void PrintStatus(Timonel timonel) {
419
417
USE_SERIAL.printf_P (" (TWI: %02d)\n\r " , twi_address);
420
418
USE_SERIAL.printf_P (" ====================================\n\r " );
421
419
USE_SERIAL.printf_P (" Bootloader address: 0x%X\n\r " , tml_status.bootloader_start );
422
- uint16_t app_start = tml_status.application_start ;
423
420
if (app_start != 0xFFFF ) {
424
- USE_SERIAL.printf_P (" Application start: 0x%X (0x%X)\n\r " , app_start, tml_status. trampoline_addr );
421
+ USE_SERIAL.printf_P (" Application start: 0x%04X (0x%X)\n\r " , app_start, trampoline );
425
422
} else {
426
- USE_SERIAL.printf_P (" Application start: 0x%X (Not Set)\n\r " , app_start);
423
+ USE_SERIAL.printf_P (" Application start: 0x%04X (Not Set)\n\r " , app_start);
427
424
}
428
425
USE_SERIAL.printf_P (" Features code: %d | %d " , tml_status.features_code , tml_status.ext_features_code );
429
- if ((tml_status.ext_features_code >> F_AUTO_CLK_TWEAK ) & true ) {
426
+ if ((tml_status.ext_features_code >> E_AUTO_CLK_TWEAK ) & true ) {
430
427
USE_SERIAL.printf_P (" (Auto)" );
431
428
} else {
432
429
USE_SERIAL.printf_P (" (Fixed)" );
433
430
}
434
431
USE_SERIAL.printf_P (" \n\r " );
435
432
USE_SERIAL.printf_P (" Low fuse: 0x%02X\n\r " , tml_status.low_fuse_setting );
436
- USE_SERIAL.printf_P (" RC osc: 0x%02X\n\n\r " , tml_status.oscillator_cal );
437
- #else // -----
438
- USE_SERIAL.print (" \n\r Timonel v" );
439
- USE_SERIAL.print (version_major);
440
- USE_SERIAL.print (" ." );
441
- USE_SERIAL.print (version_minor);
442
- USE_SERIAL.print (" " );
443
- USE_SERIAL.print (version_mj_nick.c_str ());
444
- USE_SERIAL.print (" TWI: " );
445
- USE_SERIAL.println (twi_address);
446
- USE_SERIAL.println (" ====================================" );
447
- USE_SERIAL.print (" Bootloader address: 0x" );
448
- USE_SERIAL.println (tml_status.bootloader_start , HEX);
449
- uint16_t app_start = tml_status.application_start ;
450
- if (app_start != 0xFFFF ) {
451
- USE_SERIAL.print (" Application start: 0x" );
452
- USE_SERIAL.print (app_start, HEX);
453
- USE_SERIAL.print (" - 0x" );
454
- USE_SERIAL.println (tml_status.trampoline_addr , HEX);
455
- } else {
456
- USE_SERIAL.print (" Application start: Not set: 0x" );
457
- USE_SERIAL.println (app_start, HEX);
433
+ USE_SERIAL.printf_P (" RC osc: 0x%02X" , tml_status.oscillator_cal );
434
+ #if ((defined EXT_FEATURES) && ((EXT_FEATURES >> E_CMD_READDEVS) & true))
435
+ if ((tml_status.ext_features_code >> E_CMD_READDEVS) & true ) {
436
+ Timonel::DevSettings dev_settings = timonel->GetDevSettings ();
437
+ USE_SERIAL.printf_P (" \n\r ....................................\n\r " );
438
+ USE_SERIAL.printf_P (" Fuse settings: L=0x%02X H=0x%02X E=0x%02X\n\r " , dev_settings.low_fuse_bits , dev_settings.high_fuse_bits , dev_settings.extended_fuse_bits );
439
+ USE_SERIAL.printf_P (" Lock bits: 0x%02X\n\r " , dev_settings.lock_bits );
440
+ USE_SERIAL.printf_P (" Signature: 0x%02X 0x%02X 0x%02X\n\r " , dev_settings.signature_byte_0 , dev_settings.signature_byte_1 , dev_settings.signature_byte_2 );
441
+ USE_SERIAL.printf_P (" Oscillator: 8.0Mhz=0x%02X, 6.4Mhz=0x%02X" , dev_settings.calibration_0 , dev_settings.calibration_1 );
458
442
}
459
- USE_SERIAL.print (" Features code: " );
460
- USE_SERIAL.print (tml_status.features_code );
461
- USE_SERIAL.print (" | " );
462
- USE_SERIAL.print (tml_status.ext_features_code );
463
- if ((tml_status.ext_features_code >> F_AUTO_CLK_TWEAK) & true ) {
464
- USE_SERIAL.print (" (Auto)" );
465
- } else {
466
- USE_SERIAL.print (" (Fixed)" );
467
- }
468
- USE_SERIAL.println (" " );
469
- USE_SERIAL.print (" Low fuse: 0x" );
470
- USE_SERIAL.println (tml_status.low_fuse_setting , HEX);
471
- USE_SERIAL.print (" RC osc: 0x" );
472
- USE_SERIAL.println (tml_status.oscillator_cal , HEX);
443
+ #endif // E_CMD_READDEVS
444
+ USE_SERIAL.printf_P (" \n\n\r " );
445
+ #else // -----
446
+ USE_SERIAL.print (" \n\r Timonel v" );
447
+ USE_SERIAL.print (version_major);
448
+ USE_SERIAL.print (" ." );
449
+ USE_SERIAL.print (version_minor);
450
+ USE_SERIAL.print (" " );
451
+ USE_SERIAL.print (version_mj_nick.c_str ());
452
+ USE_SERIAL.print (" TWI: " );
453
+ USE_SERIAL.println (twi_address);
454
+ USE_SERIAL.println (" ====================================" );
455
+ USE_SERIAL.print (" Bootloader address: 0x" );
456
+ USE_SERIAL.println (tml_status.bootloader_start , HEX);
457
+ if (app_start != 0xFFFF ) {
458
+ USE_SERIAL.print (" Application start: 0x" );
459
+ USE_SERIAL.print (app_start, HEX);
460
+ USE_SERIAL.print (" - 0x" );
461
+ USE_SERIAL.println (trampoline, HEX);
462
+ } else {
463
+ USE_SERIAL.print (" Application start: Not set: 0x" );
464
+ USE_SERIAL.println (app_start, HEX);
465
+ }
466
+ USE_SERIAL.print (" Features code: " );
467
+ USE_SERIAL.print (tml_status.features_code );
468
+ USE_SERIAL.print (" | " );
469
+ USE_SERIAL.print (tml_status.ext_features_code );
470
+ if ((tml_status.ext_features_code >> F_AUTO_CLK_TWEAK) & true ) {
471
+ USE_SERIAL.print (" (Auto)" );
472
+ } else {
473
+ USE_SERIAL.print (" (Fixed)" );
474
+ }
475
+ USE_SERIAL.println (" " );
476
+ USE_SERIAL.print (" Low fuse: 0x" );
477
+ USE_SERIAL.println (tml_status.low_fuse_setting , HEX);
478
+ USE_SERIAL.print (" RC osc: 0x" );
479
+ USE_SERIAL.println (tml_status.oscillator_cal , HEX);
473
480
#endif // ARDUINO_ARCH_ESP8266 || ARDUINO_ESP32_DEV || ESP_PLATFORM
474
481
} else {
475
482
#if (ARDUINO_ARCH_ESP8266 || ARDUINO_ESP32_DEV || ESP_PLATFORM)
476
- USE_SERIAL.printf_P (" \n\r ******************************************************************* \n\r " );
477
- USE_SERIAL.printf_P (" * Unknown bootloader, application or device at TWI address %02d ... *\n\r " , twi_address);
478
- USE_SERIAL.printf_P (" ******************************************************************* \n\n\r " );
483
+ USE_SERIAL.printf_P (" \n\r *************************************************\n\r " );
484
+ USE_SERIAL.printf_P (" * User application running on TWI device %02d ... *\n\r " , twi_address);
485
+ USE_SERIAL.printf_P (" *************************************************\n\n\r " );
479
486
#else // -----
480
- USE_SERIAL.println (" \n\r *******************************************************************" );
481
- USE_SERIAL.print (" * Unknown bootloader, application or device at TWI address " );
482
- USE_SERIAL.println (twi_address);
483
- USE_SERIAL.println (" *******************************************************************\n " );
487
+ USE_SERIAL.println (" \n\r *******************************************************************" );
488
+ USE_SERIAL.print (" * Unknown bootloader, application or device at TWI address " );
489
+ USE_SERIAL.println (twi_address);
490
+ USE_SERIAL.println (" *******************************************************************\n " );
484
491
#endif // ARDUINO_ARCH_ESP8266 || ARDUINO_ESP32_DEV || ESP_PLATFORM
485
492
}
493
+ return tml_status;
486
494
}
487
495
488
496
// Function ThreeStarDelay
@@ -503,8 +511,10 @@ void ShowHeader(void) {
503
511
// ClrScr();
504
512
delay (250 );
505
513
#if (ARDUINO_ARCH_ESP8266 || ARDUINO_ESP32_DEV || ESP_PLATFORM)
506
- USE_SERIAL.printf_P (" \n\r Timonel TWI Bootloader Multi Slave Test (v1.5 twim-ms)\n\r " );
514
+ USE_SERIAL.printf_P (" \n\r ..............................................................\n\r " );
515
+ USE_SERIAL.printf_P (" . Timonel I2C Bootloader Multi Slave Test (v%d.%d twim-ms) .\n\r " , VER_MAJOR, VER_MINOR);
516
+ USE_SERIAL.printf_P (" ..............................................................\n\r " );
507
517
#else // -----
508
- USE_SERIAL.println (" \n\r Timonel TWI Bootloader Multi Slave Test (v1.5 twim-ms)" );
518
+ USE_SERIAL.println (" \n\r Timonel TWI Bootloader Multi Slave Test (twim-ms)" );
509
519
#endif // ARDUINO_ARCH_ESP8266 || ARDUINO_ESP32_DEV || ESP_PLATFORM
510
520
}
0 commit comments