File tree 3 files changed +5
-4
lines changed 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -42,5 +42,5 @@ pkg.deps:
42
42
# Generated sysinit(): bin/targets/bluepill_my_sensor/generated/src/bluepill_my_sensor-sysinit-app.c
43
43
44
44
pkg.init :
45
- # remote_sensor should be initialised after nrf24l01 (Stage 605 )
46
- remote_sensor_create : 607 # Call remote_sensor_create() to initialise the driver during startup
45
+ # remote_sensor should be initialised after sensor_coap (Stage 660 )
46
+ remote_sensor_create : 670 # Call remote_sensor_create() to initialise the driver during startup
Original file line number Diff line number Diff line change @@ -52,5 +52,5 @@ pkg.deps.COAP_CBOR_ENCODING:
52
52
# Generated sysinit(): bin/targets/bluepill_my_sensor/generated/src/bluepill_my_sensor-sysinit-app.c
53
53
54
54
pkg.init :
55
- # sensor_coap should be initialised after esp8266 (Stage 640 )
56
- init_sensor_coap : 650 # Call init_sensor_coap() to initialise the Sensor CoAP module during startup
55
+ # sensor_coap should be initialised after esp8266 (Stage 650 )
56
+ init_sensor_coap : 660 # Call init_sensor_coap() to initialise the Sensor CoAP module during startup
Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ const uint8_t *get_hardware_id(void) {
209
209
hw_id_len = hal_bsp_hw_id_len (); // Fetch the length, i.e. 12
210
210
assert ((unsigned ) hw_id_len >= sizeof (hw_id )); // Hardware ID too short.
211
211
hw_id_len = hal_bsp_hw_id (hw_id , sizeof (hw_id )); assert (hw_id_len > 0 ); // Get the hardware ID.
212
+ console_printf ("hwid " ); console_dump (hw_id , hw_id_len ); console_printf ("\n" );
212
213
}
213
214
return hw_id ;
214
215
}
You can’t perform that action at this time.
0 commit comments