File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/platforms/esp32/components/avm_builtins Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ might lead to a crash in certain situations.
25
25
certain VM instructions are used.
26
26
- Fixed ESP32 GPIO interrupt trigger ` none `
27
27
- Fixed an issue where a timeout would occur immediately in a race condition
28
+ - Fixed SPI close command
28
29
29
30
## [ 0.6.5] - 2024-10-15
30
31
Original file line number Diff line number Diff line change @@ -672,7 +672,7 @@ static NativeHandlerResult spidriver_consume_mailbox(Context *ctx)
672
672
globalcontext_get_process_unlock (ctx -> global , target );
673
673
mailbox_remove_message (& ctx -> mailbox , & ctx -> heap );
674
674
675
- return cmd == CLOSE_ATOM ? NativeTerminate : NativeContinue ;
675
+ return cmd == SPICloseCmd ? NativeTerminate : NativeContinue ;
676
676
}
677
677
678
678
bool spi_driver_get_peripheral (term spi_port , spi_host_device_t * host_dev , GlobalContext * global )
You can’t perform that action at this time.
0 commit comments