mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
ports/stm32: Update port for MicroPython 1.25.0.
Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
This commit is contained in:
parent
39d78e764c
commit
b168e7f592
@ -49,9 +49,10 @@
|
|||||||
#include "i2c.h"
|
#include "i2c.h"
|
||||||
#include "uart.h"
|
#include "uart.h"
|
||||||
#include "dac.h"
|
#include "dac.h"
|
||||||
#include "can.h"
|
#include "pyb_can.h"
|
||||||
#include "extint.h"
|
#include "extint.h"
|
||||||
#include "servo.h"
|
#include "servo.h"
|
||||||
|
#include "storage.h"
|
||||||
#include "sdcard.h"
|
#include "sdcard.h"
|
||||||
#include "modmachine.h"
|
#include "modmachine.h"
|
||||||
#include "extmod/modmachine.h"
|
#include "extmod/modmachine.h"
|
||||||
@ -157,6 +158,10 @@ int main(void) {
|
|||||||
sdram_test(false);
|
sdram_test(false);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if MICROPY_HW_ENABLE_STORAGE
|
||||||
|
storage_init();
|
||||||
|
#endif
|
||||||
|
|
||||||
// Basic sub-system init
|
// Basic sub-system init
|
||||||
led_init();
|
led_init();
|
||||||
pendsv_init();
|
pendsv_init();
|
||||||
@ -199,7 +204,7 @@ soft_reset:
|
|||||||
extint_init0();
|
extint_init0();
|
||||||
timer_init0();
|
timer_init0();
|
||||||
#if MICROPY_HW_ENABLE_CAN
|
#if MICROPY_HW_ENABLE_CAN
|
||||||
can_init0();
|
pyb_can_init0();
|
||||||
#endif
|
#endif
|
||||||
i2c_init0();
|
i2c_init0();
|
||||||
spi_init0();
|
spi_init0();
|
||||||
@ -355,11 +360,11 @@ soft_reset_exit:
|
|||||||
cyw43_deinit(&cyw43_state);
|
cyw43_deinit(&cyw43_state);
|
||||||
#endif
|
#endif
|
||||||
timer_deinit();
|
timer_deinit();
|
||||||
i2c_deinit_all();
|
pyb_i2c_deinit_all();
|
||||||
spi_deinit_all();
|
spi_deinit_all();
|
||||||
uart_deinit_all();
|
uart_deinit_all();
|
||||||
#if MICROPY_HW_ENABLE_CAN
|
#if MICROPY_HW_ENABLE_CAN
|
||||||
can_deinit_all();
|
pyb_can_deinit_all();
|
||||||
#endif
|
#endif
|
||||||
#if MICROPY_PY_THREAD
|
#if MICROPY_PY_THREAD
|
||||||
pyb_thread_deinit();
|
pyb_thread_deinit();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user