diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-01-31 14:39:52 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-01-31 14:39:52 +1100 |
| commit | aae18719991c29a286d69661264d261004ee7aeb (patch) | |
| tree | 71142524e06edc60c1d5d07b60426c38dd72f25a /src/drivers | |
| parent | ef8d404b15e6d32506617a95aa3161fbe59ecdaf (diff) | |
| download | tangara-fw-aae18719991c29a286d69661264d261004ee7aeb.tar.gz | |
remove unused ISR allocation
this was blocking the i2s driver somehow!(?)
Diffstat (limited to 'src/drivers')
| -rw-r--r-- | src/drivers/display.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/display.cpp b/src/drivers/display.cpp index 83710f45..2ada4a3e 100644 --- a/src/drivers/display.cpp +++ b/src/drivers/display.cpp @@ -241,7 +241,7 @@ void Display::Flush(lv_disp_drv_t* disp_drv, // lv_disp_flush_ready(&driver_); } -void IRAM_ATTR Display::PostTransaction(const spi_transaction_t& transaction) { +void Display::PostTransaction(const spi_transaction_t& transaction) { if (reinterpret_cast<uintptr_t>(transaction.user) & LVGL_FLUSH) { lv_disp_flush_ready(&driver_); } |
