3d33dbedc9
- mpconfigboard.h: flash and USART config - mpconfigboard.mk: enable LFS1 - pins.c: define pins and LEDs - pins.h: define structs and consts
33 lines
1.3 KiB
C
33 lines
1.3 KiB
C
#define MICROPY_HW_BOARD_NAME "Mini SAM M4"
|
|
#define MICROPY_HW_MCU_NAME "SAMD51G19A"
|
|
|
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT)
|
|
#define MICROPY_PY_BUILTINS_COMPLEX (0)
|
|
#define MICROPY_PY_MATH (0)
|
|
#define MICROPY_PY_CMATH (0)
|
|
|
|
// MicroPython configs
|
|
// samd_flash.c flash parameters
|
|
// Build a 128k Flash storage at top. 512k-128k=384k=0x60000
|
|
// 512*1024= 0x80000 minus 128*1024= 0x20000 = 0x60000
|
|
#define MICROPY_HW_FLASH_STORAGE_BASE (0x60000)
|
|
#define MICROPY_HW_FLASH_STORAGE_BYTES (0x1FFFF)
|
|
#define VFS_BLOCK_SIZE_BYTES (1536) //
|
|
|
|
// ASF4 MCU package specific Pin definitions
|
|
#include "samd51g19a.h"
|
|
|
|
// Please consult the SAM_D51 Datasheet, I/O Multiplexing and Considerations.
|
|
// USART pin assignments: Tx=TX_D1=PA17=SERCOM3/PAD[0], Rx=RX_D0=PA16=SERCOM3/PAD[1]
|
|
#define CPU_FREQ (48000000) // For selecting Baud from clock.
|
|
#define MP_PIN_GRP 0 // A-D=0-3
|
|
#define MP_TX_PIN 17
|
|
#define MP_RX_PIN 16 // 'n'
|
|
#define MP_PERIPHERAL_MUX 8 // 'n'th group of 2 pins
|
|
#define USARTx SERCOM3 //
|
|
#define MP_PORT_FUNC 0x33 // Sets PMUXE & PMUXO to the Alternative Function.A-N=0-13
|
|
#define MP_RXPO_PAD 1 // RXPO- Receive Data Pinout
|
|
#define MP_TXPO_PAD 0 // TXPO- Tranmit Data Pinout
|
|
#define MP_SERCOMx SERCOM3_ // APBCMASK
|
|
#define MP_SERCOM_GCLK_ID_x_CORE SERCOM3_GCLK_ID_CORE
|