File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
ext_mod/esp32_additions/spi/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ mp_obj_t esp32_hw_spi_get_dma_buffer(mp_obj_t size_in)
34
34
return MP_OBJ_FROM_PTR (view );
35
35
}
36
36
37
- MP_DEFINE_CONST_FUN_OBJ_1 (esp32_hw_spi_get_dma_buffer_obj , esp32_hw_spi_get_dma_buffer );
37
+ STATIC MP_DEFINE_CONST_FUN_OBJ_1 (esp32_hw_spi_get_dma_buffer_obj , esp32_hw_spi_get_dma_buffer );
38
38
39
39
40
40
mp_obj_t esp32_hw_spi_free_dma_buffer (mp_obj_t buf_in )
@@ -46,7 +46,7 @@ mp_obj_t esp32_hw_spi_free_dma_buffer(mp_obj_t buf_in)
46
46
return mp_const_none ;
47
47
}
48
48
49
- MP_DEFINE_CONST_FUN_OBJ_1 (esp32_hw_spi_free_dma_buffer_obj , esp32_hw_spi_free_dma_buffer );
49
+ STATIC MP_DEFINE_CONST_FUN_OBJ_1 (esp32_hw_spi_free_dma_buffer_obj , esp32_hw_spi_free_dma_buffer );
50
50
51
51
52
52
STATIC const mp_map_elem_t esp32_module_spi_globals_table [] = {
You can’t perform that action at this time.
0 commit comments