mirror of
https://github.com/micropython/micropython.git
synced 2025-12-15 17:30:14 +01:00
Assuming proper C99 language support, we can select "the int type as big as a pointer" (most of the time) or "the 64-bit int type" (nanboxing with REPR_D), and then define everything else automatically. This simplifies port configuration files. And the types can still be overridden if needed. Signed-off-by: Jeff Epler <jepler@unpythonic.net>
235 lines
9.9 KiB
C
235 lines
9.9 KiB
C
/*
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
* The MIT License (MIT)
|
|
* Copyright (c) 2024 Arduino SA
|
|
*/
|
|
|
|
#define MICROPY_HW_BOARD_NAME "Arduino OPTA"
|
|
#define MICROPY_HW_MCU_NAME "STM32H747"
|
|
#define MICROPY_HW_FLASH_FS_LABEL "OPTA"
|
|
|
|
// Network config
|
|
#define MICROPY_PY_NETWORK_HOSTNAME_DEFAULT "mpy-opta"
|
|
|
|
#define MICROPY_OBJ_REPR (MICROPY_OBJ_REPR_C)
|
|
|
|
#define MICROPY_FATFS_EXFAT (1)
|
|
#define MICROPY_HW_ENABLE_RTC (1)
|
|
#define MICROPY_HW_ENABLE_RNG (1)
|
|
#define MICROPY_HW_ENABLE_ADC (1)
|
|
#define MICROPY_HW_ENABLE_USB (1)
|
|
#define MICROPY_HW_HAS_SWITCH (1)
|
|
#define MICROPY_HW_HAS_FLASH (1)
|
|
#define MICROPY_HW_ENABLE_TIMER (1)
|
|
#define MICROPY_HW_ENTER_BOOTLOADER_VIA_RESET (0)
|
|
|
|
// Flash storage config
|
|
#define MICROPY_HW_SPIFLASH_ENABLE_CACHE (1)
|
|
#define MICROPY_HW_SPIFLASH_SOFT_RESET (1)
|
|
#define MICROPY_HW_ENABLE_INTERNAL_FLASH_STORAGE (0)
|
|
|
|
#define MICROPY_BOARD_STARTUP OPTA_board_startup
|
|
void OPTA_board_startup(void);
|
|
|
|
#define MICROPY_BOARD_EARLY_INIT OPTA_board_early_init
|
|
void OPTA_board_early_init(void);
|
|
|
|
#define MICROPY_HW_ENTER_BOOTLOADER_VIA_RESET (0)
|
|
#define MICROPY_BOARD_ENTER_BOOTLOADER(nargs, args) OPTA_board_enter_bootloader()
|
|
void OPTA_board_enter_bootloader(void);
|
|
|
|
void OPTA_board_low_power(int mode);
|
|
#define MICROPY_BOARD_LEAVE_STOP OPTA_board_low_power(0);
|
|
#define MICROPY_BOARD_ENTER_STOP OPTA_board_low_power(1);
|
|
#define MICROPY_BOARD_ENTER_STANDBY OPTA_board_low_power(2);
|
|
|
|
void OPTA_board_osc_enable(int enable);
|
|
#define MICROPY_BOARD_PRE_STOP OPTA_board_osc_enable(0);
|
|
#define MICROPY_BOARD_POST_STOP OPTA_board_osc_enable(1);
|
|
|
|
// PLL1 400MHz/50MHz for SDMMC and FDCAN
|
|
// USB and RNG are clocked from the HSI48
|
|
#define MICROPY_HW_CLK_PLLM (5)
|
|
#define MICROPY_HW_CLK_PLLN (160)
|
|
#define MICROPY_HW_CLK_PLLP (2)
|
|
#define MICROPY_HW_CLK_PLLQ (16)
|
|
#define MICROPY_HW_CLK_PLLR (2)
|
|
#define MICROPY_HW_CLK_PLLVCI (RCC_PLL1VCIRANGE_2)
|
|
#define MICROPY_HW_CLK_PLLVCO (RCC_PLL1VCOWIDE)
|
|
#define MICROPY_HW_CLK_PLLFRAC (0)
|
|
|
|
// PLL2 200MHz for FMC and QSPI.
|
|
#define MICROPY_HW_CLK_PLL2M (5)
|
|
#define MICROPY_HW_CLK_PLL2N (80)
|
|
#define MICROPY_HW_CLK_PLL2P (2)
|
|
#define MICROPY_HW_CLK_PLL2Q (2)
|
|
#define MICROPY_HW_CLK_PLL2R (2)
|
|
#define MICROPY_HW_CLK_PLL2VCI (RCC_PLL2VCIRANGE_2)
|
|
#define MICROPY_HW_CLK_PLL2VCO (RCC_PLL2VCOWIDE)
|
|
#define MICROPY_HW_CLK_PLL2FRAC (0)
|
|
|
|
// PLL3 160MHz SPI123 100MHz for ADC
|
|
#define MICROPY_HW_CLK_PLL3M (5)
|
|
#define MICROPY_HW_CLK_PLL3N (160)
|
|
#define MICROPY_HW_CLK_PLL3P (5)
|
|
#define MICROPY_HW_CLK_PLL3Q (5)
|
|
#define MICROPY_HW_CLK_PLL3R (8)
|
|
#define MICROPY_HW_CLK_PLL3VCI (RCC_PLL3VCIRANGE_2)
|
|
#define MICROPY_HW_CLK_PLL3VCO (RCC_PLL3VCOWIDE)
|
|
#define MICROPY_HW_CLK_PLL3FRAC (0)
|
|
|
|
// HSE in BYPASS mode.
|
|
#define MICROPY_HW_CLK_USE_BYPASS (1)
|
|
|
|
// Bus clock divider values
|
|
#define MICROPY_HW_CLK_AHB_DIV (RCC_HCLK_DIV2)
|
|
#define MICROPY_HW_CLK_APB1_DIV (RCC_APB1_DIV2)
|
|
#define MICROPY_HW_CLK_APB2_DIV (RCC_APB2_DIV2)
|
|
#define MICROPY_HW_CLK_APB3_DIV (RCC_APB3_DIV2)
|
|
#define MICROPY_HW_CLK_APB4_DIV (RCC_APB4_DIV2)
|
|
|
|
// Peripheral clock sources
|
|
#define MICROPY_HW_RCC_HSI48_STATE (RCC_HSI48_ON)
|
|
#define MICROPY_HW_RCC_USB_CLKSOURCE (RCC_USBCLKSOURCE_HSI48)
|
|
#define MICROPY_HW_RCC_RTC_CLKSOURCE (RCC_RTCCLKSOURCE_LSI)
|
|
#define MICROPY_HW_RCC_FMC_CLKSOURCE (RCC_FMCCLKSOURCE_PLL2)
|
|
#define MICROPY_HW_RCC_RNG_CLKSOURCE (RCC_RNGCLKSOURCE_HSI48)
|
|
#define MICROPY_HW_RCC_ADC_CLKSOURCE (RCC_ADCCLKSOURCE_PLL3)
|
|
#define MICROPY_HW_RCC_SDMMC_CLKSOURCE (RCC_SDMMCCLKSOURCE_PLL)
|
|
#define MICROPY_HW_RCC_FDCAN_CLKSOURCE (RCC_FDCANCLKSOURCE_PLL)
|
|
#define MICROPY_HW_RCC_SPI123_CLKSOURCE (RCC_SPI123CLKSOURCE_PLL3)
|
|
#define MICROPY_HW_RCC_I2C123_CLKSOURCE (RCC_I2C123CLKSOURCE_D2PCLK1)
|
|
#define MICROPY_HW_RCC_QSPI_CLKSOURCE (RCC_QSPICLKSOURCE_PLL2)
|
|
|
|
// SMPS configuration
|
|
#define MICROPY_HW_PWR_SMPS_CONFIG (PWR_LDO_SUPPLY)
|
|
|
|
// Configure the analog switches for dual-pad pins.
|
|
#define MICROPY_HW_ANALOG_SWITCH_PA0 (SYSCFG_SWITCH_PA0_OPEN)
|
|
#define MICROPY_HW_ANALOG_SWITCH_PA1 (SYSCFG_SWITCH_PA1_OPEN)
|
|
#define MICROPY_HW_ANALOG_SWITCH_PC2 (SYSCFG_SWITCH_PC2_OPEN)
|
|
#define MICROPY_HW_ANALOG_SWITCH_PC3 (SYSCFG_SWITCH_PC3_OPEN)
|
|
|
|
// There is an external 32kHz oscillator
|
|
#define RTC_ASYNCH_PREDIV (0)
|
|
#define RTC_SYNCH_PREDIV (0x7fff)
|
|
#define MICROPY_HW_RTC_USE_BYPASS (1)
|
|
#define MICROPY_HW_RTC_USE_US (1)
|
|
#define MICROPY_HW_RTC_USE_CALOUT (1)
|
|
|
|
#if !MICROPY_HW_ENABLE_INTERNAL_FLASH_STORAGE
|
|
// QSPI flash #1 for storage
|
|
#define MICROPY_HW_QSPI_PRESCALER (2) // 100MHz
|
|
#define MICROPY_HW_QSPIFLASH_SIZE_BITS_LOG2 (27)
|
|
// Reserve 1MiB at the end for compatibility with alternate firmware that places WiFi blob here.
|
|
#define MICROPY_HW_SPIFLASH_SIZE_BITS (120 * 1024 * 1024)
|
|
#define MICROPY_HW_QSPIFLASH_CS (pyb_pin_QSPI2_CS)
|
|
#define MICROPY_HW_QSPIFLASH_SCK (pyb_pin_QSPI2_CLK)
|
|
#define MICROPY_HW_QSPIFLASH_IO0 (pyb_pin_QSPI2_D0)
|
|
#define MICROPY_HW_QSPIFLASH_IO1 (pyb_pin_QSPI2_D1)
|
|
#define MICROPY_HW_QSPIFLASH_IO2 (pyb_pin_QSPI2_D2)
|
|
#define MICROPY_HW_QSPIFLASH_IO3 (pyb_pin_QSPI2_D3)
|
|
|
|
// SPI flash #1, block device config
|
|
extern const struct _mp_spiflash_config_t spiflash_config;
|
|
extern struct _spi_bdev_t spi_bdev;
|
|
#define MICROPY_HW_BDEV_SPIFLASH (&spi_bdev)
|
|
#define MICROPY_HW_BDEV_SPIFLASH_CONFIG (&spiflash_config)
|
|
#define MICROPY_HW_BDEV_SPIFLASH_SIZE_BYTES (MICROPY_HW_SPIFLASH_SIZE_BITS / 8)
|
|
#define MICROPY_HW_BDEV_SPIFLASH_EXTENDED (&spi_bdev)
|
|
#endif
|
|
|
|
// 3 wait states
|
|
#define MICROPY_HW_FLASH_LATENCY FLASH_LATENCY_2
|
|
|
|
// UART config
|
|
#define MICROPY_HW_UART3_TX (pyb_pin_UART3_TX)
|
|
#define MICROPY_HW_UART3_RX (pyb_pin_UART3_RX)
|
|
#define MICROPY_HW_UART3_RTS (pyb_pin_UART3_RTS)
|
|
#define MICROPY_HW_UART3_CTS (pyb_pin_UART3_CTS)
|
|
#define MICROPY_HW_UART3_RX_PULL (GPIO_NOPULL)
|
|
|
|
#define MICROPY_HW_UART4_TX (pyb_pin_BT_TXD)
|
|
#define MICROPY_HW_UART4_RX (pyb_pin_BT_RXD)
|
|
#define MICROPY_HW_UART4_RTS (pyb_pin_BT_RTS)
|
|
#define MICROPY_HW_UART4_CTS (pyb_pin_BT_CTS)
|
|
|
|
#define MICROPY_HW_UART6_TX (pyb_pin_UART6_TX)
|
|
#define MICROPY_HW_UART6_RX (pyb_pin_UART6_RX)
|
|
|
|
// I2C buses
|
|
#define MICROPY_HW_I2C1_SCL (pyb_pin_I2C1_SCL)
|
|
#define MICROPY_HW_I2C1_SDA (pyb_pin_I2C1_SDA)
|
|
|
|
#define MICROPY_HW_I2C3_SCL (pyb_pin_I2C3_SCL)
|
|
#define MICROPY_HW_I2C3_SDA (pyb_pin_I2C3_SDA)
|
|
|
|
// USRSW is pulled high. Pressing the button makes the input go low.
|
|
#define MICROPY_HW_USRSW_PIN (pyb_pin_USER_BUTTON)
|
|
#define MICROPY_HW_USRSW_PULL (GPIO_PULLUP)
|
|
#define MICROPY_HW_USRSW_EXTI_MODE (GPIO_MODE_IT_FALLING)
|
|
#define MICROPY_HW_USRSW_PRESSED (0)
|
|
|
|
// LEDs
|
|
#define MICROPY_HW_LED1 (pyb_pin_LED_SYS_1) // user 1
|
|
#define MICROPY_HW_LED2 (pyb_pin_LED_SYS_2) // user 2
|
|
#define MICROPY_HW_LED_ON(pin) (mp_hal_pin_low(pin))
|
|
#define MICROPY_HW_LED_OFF(pin) (mp_hal_pin_high(pin))
|
|
|
|
// WiFi SDMMC
|
|
#define MICROPY_HW_SDIO_SDMMC (1)
|
|
#define MICROPY_HW_SDIO_CK (pyb_pin_WL_SDIO_CLK)
|
|
#define MICROPY_HW_SDIO_CMD (pyb_pin_WL_SDIO_CMD)
|
|
#define MICROPY_HW_SDIO_D0 (pyb_pin_WL_SDIO_0)
|
|
#define MICROPY_HW_SDIO_D1 (pyb_pin_WL_SDIO_1)
|
|
#define MICROPY_HW_SDIO_D2 (pyb_pin_WL_SDIO_2)
|
|
#define MICROPY_HW_SDIO_D3 (pyb_pin_WL_SDIO_3)
|
|
|
|
// CYW43 config
|
|
// A custom NVRAM file is needed to disable the LPO.
|
|
#define CYW43_WIFI_NVRAM_INCLUDE_FILE "wifi_nvram_1dx.h"
|
|
|
|
#define MICROPY_HW_USB_CDC_RX_DATA_SIZE (1024)
|
|
#define MICROPY_HW_USB_CDC_TX_DATA_SIZE (1024)
|
|
#define MICROPY_HW_USB_CDC_1200BPS_TOUCH (1)
|
|
|
|
// Bluetooth config
|
|
#define MICROPY_HW_BLE_UART_ID (PYB_UART_4)
|
|
#define MICROPY_HW_BLE_UART_BAUDRATE (115200)
|
|
#define MICROPY_HW_BLE_UART_BAUDRATE_SECONDARY (3000000)
|
|
|
|
// Ethernet via RMII
|
|
#define MICROPY_HW_ETH_MDC (pin_C1)
|
|
#define MICROPY_HW_ETH_MDIO (pin_A2)
|
|
#define MICROPY_HW_ETH_RMII_REF_CLK (pin_A1)
|
|
#define MICROPY_HW_ETH_RMII_CRS_DV (pin_A7)
|
|
#define MICROPY_HW_ETH_RMII_RXD0 (pin_C4)
|
|
#define MICROPY_HW_ETH_RMII_RXD1 (pin_C5)
|
|
#define MICROPY_HW_ETH_RMII_TX_EN (pin_G11)
|
|
#define MICROPY_HW_ETH_RMII_TXD0 (pin_G13)
|
|
#define MICROPY_HW_ETH_RMII_TXD1 (pin_G12)
|
|
|
|
// USB config
|
|
#define MICROPY_HW_USB_FS (1)
|
|
#define MICROPY_HW_USB_VID 0x2341
|
|
#define MICROPY_HW_USB_PID 0x0564
|
|
#define MICROPY_HW_USB_PID_CDC_MSC (MICROPY_HW_USB_PID)
|
|
#define MICROPY_HW_USB_PID_CDC_HID (MICROPY_HW_USB_PID)
|
|
#define MICROPY_HW_USB_PID_CDC (MICROPY_HW_USB_PID)
|
|
#define MICROPY_HW_USB_PID_MSC (MICROPY_HW_USB_PID)
|
|
#define MICROPY_HW_USB_PID_CDC2_MSC (MICROPY_HW_USB_PID)
|
|
#define MICROPY_HW_USB_PID_CDC2 (MICROPY_HW_USB_PID)
|
|
#define MICROPY_HW_USB_PID_CDC3 (MICROPY_HW_USB_PID)
|
|
#define MICROPY_HW_USB_PID_CDC3_MSC (MICROPY_HW_USB_PID)
|
|
#define MICROPY_HW_USB_PID_CDC_MSC_HID (MICROPY_HW_USB_PID)
|
|
#define MICROPY_HW_USB_PID_CDC2_MSC_HID (MICROPY_HW_USB_PID)
|
|
#define MICROPY_HW_USB_PID_CDC3_MSC_HID (MICROPY_HW_USB_PID)
|
|
#define MICROPY_HW_USB_LANGID_STRING 0x409
|
|
#define MICROPY_HW_USB_MANUFACTURER_STRING "Arduino"
|
|
#define MICROPY_HW_USB_PRODUCT_FS_STRING "Opta Virtual Comm Port in FS Mode"
|
|
#define MICROPY_HW_USB_PRODUCT_HS_STRING "Opta Virtual Comm Port in HS Mode"
|
|
#define MICROPY_HW_USB_INTERFACE_FS_STRING "Opta Interface"
|
|
#define MICROPY_HW_USB_INTERFACE_HS_STRING "Opta Interface"
|
|
#define MICROPY_HW_USB_CONFIGURATION_FS_STRING "Opta Config"
|
|
#define MICROPY_HW_USB_CONFIGURATION_HS_STRING "Opta Config"
|