We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecdb5db commit 5a1b57cCopy full SHA for 5a1b57c
2 files changed
ports/silabs/common-hal/_bleio/PacketBuffer.c
@@ -145,7 +145,7 @@ void _common_hal_bleio_packet_buffer_construct(
145
uint32_t *outgoing_buffer1,
146
uint32_t *outgoing_buffer2,
147
size_t max_packet_size,
148
- ble_event_handler_t static_handler_entry) {
+ ble_event_handler_t *static_handler_entry) {
149
150
bleio_characteristic_properties_t temp_prop;
151
self->characteristic = characteristic;
ports/silabs/common-hal/microcontroller/__init__.c
@@ -60,6 +60,9 @@ void common_hal_mcu_on_next_reset(mcu_runmode_t runmode) {
60
}
61
62
63
+// CHIP_Reset does not return, but is not declared as such in the SDK.
64
+void __attribute__ ((noreturn)) CHIP_Reset(void);
65
+
66
void common_hal_mcu_reset(void) {
67
filesystem_flush(); // TODO: implement as part of flash improvements
68
CHIP_Reset();
0 commit comments