2015-10-08 04:26:04 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013-2015 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2017-01-27 12:11:59 +00:00
|
|
|
#include <string.h>
|
2015-10-08 04:26:04 +00:00
|
|
|
|
|
|
|
#include "modmachine.h"
|
|
|
|
#include "py/gc.h"
|
|
|
|
#include "py/runtime.h"
|
2018-09-24 04:18:18 +00:00
|
|
|
#include "py/mperrno.h"
|
2015-10-30 23:03:58 +00:00
|
|
|
#include "py/mphal.h"
|
2022-10-27 14:59:36 +00:00
|
|
|
#include "drivers/dht/dht.h"
|
2023-10-10 07:19:03 +00:00
|
|
|
#include "extmod/modmachine.h"
|
2021-07-09 04:19:15 +00:00
|
|
|
#include "shared/runtime/pyexec.h"
|
2017-01-27 12:11:59 +00:00
|
|
|
#include "lib/oofatfs/ff.h"
|
|
|
|
#include "extmod/vfs.h"
|
2017-01-29 08:20:27 +00:00
|
|
|
#include "extmod/vfs_fat.h"
|
2015-10-08 04:26:04 +00:00
|
|
|
#include "gccollect.h"
|
|
|
|
#include "irq.h"
|
2018-09-24 04:18:18 +00:00
|
|
|
#include "powerctrl.h"
|
2022-04-27 08:58:09 +00:00
|
|
|
#include "boardctrl.h"
|
2017-02-06 04:13:30 +00:00
|
|
|
#include "pybthread.h"
|
2015-10-08 04:26:04 +00:00
|
|
|
#include "rng.h"
|
|
|
|
#include "storage.h"
|
2015-10-19 21:48:21 +00:00
|
|
|
#include "pin.h"
|
2015-10-08 04:26:04 +00:00
|
|
|
#include "timer.h"
|
|
|
|
#include "usb.h"
|
2015-11-07 11:03:12 +00:00
|
|
|
#include "rtc.h"
|
stmhal/modmachine: Initial attempt to add I2C & SPI classes.
In new hardware API, these classes implement master modes of interfaces,
and "mode" parameter is not accepted. Trying to implement new HW API
in terms of older pyb module leaves variuos corner cases:
In new HW API, I2C(1) means "I2C #1 in master mode" (? depends on
interpretation), while in old API, it means "I2C #1, with no settings
changes".
For I2C class, it's easy to make mode optional, because that's last
positional param, but for SPI, there's "baudrate" after it (which
is inconsistent with I2C, which requires "baudrate" to be kwonly-arg).
2015-11-14 14:13:58 +00:00
|
|
|
#include "i2c.h"
|
|
|
|
#include "spi.h"
|
2017-05-16 07:40:22 +00:00
|
|
|
#include "uart.h"
|
2015-10-08 04:26:04 +00:00
|
|
|
|
2022-02-12 20:36:58 +00:00
|
|
|
#if defined(STM32G0)
|
|
|
|
// G0 has BOR and POR combined
|
|
|
|
#define RCC_CSR_BORRSTF RCC_CSR_PWRRSTF
|
|
|
|
#define RCC_CSR_PORRSTF RCC_CSR_PWRRSTF
|
|
|
|
#endif
|
|
|
|
|
2023-03-22 05:38:49 +00:00
|
|
|
#if defined(STM32H5)
|
|
|
|
#define RCC_SR RSR
|
|
|
|
#define RCC_SR_IWDGRSTF RCC_RSR_IWDGRSTF
|
|
|
|
#define RCC_SR_WWDGRSTF RCC_RSR_WWDGRSTF
|
|
|
|
#define RCC_SR_BORRSTF RCC_RSR_BORRSTF
|
|
|
|
#define RCC_SR_PINRSTF RCC_RSR_PINRSTF
|
|
|
|
#define RCC_SR_RMVF RCC_RSR_RMVF
|
|
|
|
#elif defined(STM32H7)
|
2018-02-23 16:54:09 +00:00
|
|
|
#define RCC_SR RSR
|
|
|
|
#define RCC_SR_IWDGRSTF RCC_RSR_IWDG1RSTF
|
|
|
|
#define RCC_SR_WWDGRSTF RCC_RSR_WWDG1RSTF
|
|
|
|
#define RCC_SR_PORRSTF RCC_RSR_PORRSTF
|
|
|
|
#define RCC_SR_BORRSTF RCC_RSR_BORRSTF
|
|
|
|
#define RCC_SR_PINRSTF RCC_RSR_PINRSTF
|
|
|
|
#define RCC_SR_RMVF RCC_RSR_RMVF
|
|
|
|
#else
|
|
|
|
#define RCC_SR CSR
|
|
|
|
#define RCC_SR_IWDGRSTF RCC_CSR_IWDGRSTF
|
|
|
|
#define RCC_SR_WWDGRSTF RCC_CSR_WWDGRSTF
|
2023-03-22 05:38:49 +00:00
|
|
|
#if defined(RCC_CSR_PORRSTF)
|
2018-02-23 16:54:09 +00:00
|
|
|
#define RCC_SR_PORRSTF RCC_CSR_PORRSTF
|
2023-03-22 05:38:49 +00:00
|
|
|
#endif
|
|
|
|
#if defined(RCC_CSR_BORRSTF)
|
2018-02-23 16:54:09 +00:00
|
|
|
#define RCC_SR_BORRSTF RCC_CSR_BORRSTF
|
2023-03-22 05:38:49 +00:00
|
|
|
#endif
|
2018-02-23 16:54:09 +00:00
|
|
|
#define RCC_SR_PINRSTF RCC_CSR_PINRSTF
|
|
|
|
#define RCC_SR_RMVF RCC_CSR_RMVF
|
|
|
|
#endif
|
|
|
|
|
2016-09-06 04:20:19 +00:00
|
|
|
#define PYB_RESET_SOFT (0)
|
|
|
|
#define PYB_RESET_POWER_ON (1)
|
|
|
|
#define PYB_RESET_HARD (2)
|
|
|
|
#define PYB_RESET_WDT (3)
|
|
|
|
#define PYB_RESET_DEEPSLEEP (4)
|
|
|
|
|
|
|
|
STATIC uint32_t reset_cause;
|
|
|
|
|
|
|
|
void machine_init(void) {
|
2018-03-16 23:42:50 +00:00
|
|
|
#if defined(STM32F4)
|
2016-09-06 04:20:19 +00:00
|
|
|
if (PWR->CSR & PWR_CSR_SBF) {
|
|
|
|
// came out of standby
|
|
|
|
reset_cause = PYB_RESET_DEEPSLEEP;
|
2016-09-27 05:49:35 +00:00
|
|
|
PWR->CR |= PWR_CR_CSBF;
|
2016-09-06 04:20:19 +00:00
|
|
|
} else
|
2018-03-16 23:42:50 +00:00
|
|
|
#elif defined(STM32F7)
|
2017-08-23 07:00:02 +00:00
|
|
|
if (PWR->CSR1 & PWR_CSR1_SBF) {
|
|
|
|
// came out of standby
|
|
|
|
reset_cause = PYB_RESET_DEEPSLEEP;
|
|
|
|
PWR->CR1 |= PWR_CR1_CSBF;
|
|
|
|
} else
|
2023-10-21 13:03:53 +00:00
|
|
|
#elif defined(STM32H5)
|
|
|
|
if (PWR->PMSR & PWR_PMSR_STOPF || PWR->PMSR & PWR_PMSR_SBF) {
|
|
|
|
// came out of standby or stop mode
|
|
|
|
reset_cause = PYB_RESET_DEEPSLEEP;
|
|
|
|
PWR->PMCR |= PWR_PMCR_CSSF;
|
|
|
|
} else
|
2018-02-23 16:54:09 +00:00
|
|
|
#elif defined(STM32H7)
|
|
|
|
if (PWR->CPUCR & PWR_CPUCR_SBF || PWR->CPUCR & PWR_CPUCR_STOPF) {
|
|
|
|
// came out of standby or stop mode
|
|
|
|
reset_cause = PYB_RESET_DEEPSLEEP;
|
|
|
|
PWR->CPUCR |= PWR_CPUCR_CSSF;
|
|
|
|
} else
|
2018-12-27 17:04:00 +00:00
|
|
|
#elif defined(STM32L4)
|
|
|
|
if (PWR->SR1 & PWR_SR1_SBF) {
|
|
|
|
// came out of standby
|
|
|
|
reset_cause = PYB_RESET_DEEPSLEEP;
|
|
|
|
PWR->SCR |= PWR_SCR_CSBF;
|
|
|
|
} else
|
2022-02-22 22:37:48 +00:00
|
|
|
#elif defined(STM32WB)
|
|
|
|
if (PWR->EXTSCR & PWR_EXTSCR_C1SBF) {
|
|
|
|
// came out of standby
|
|
|
|
reset_cause = PYB_RESET_DEEPSLEEP;
|
|
|
|
PWR->EXTSCR |= PWR_EXTSCR_C1CSSF;
|
|
|
|
} else
|
2016-09-06 04:20:19 +00:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
// get reset cause from RCC flags
|
2018-02-23 16:54:09 +00:00
|
|
|
uint32_t state = RCC->RCC_SR;
|
|
|
|
if (state & RCC_SR_IWDGRSTF || state & RCC_SR_WWDGRSTF) {
|
2016-09-06 04:20:19 +00:00
|
|
|
reset_cause = PYB_RESET_WDT;
|
2023-03-22 05:38:49 +00:00
|
|
|
} else if (0
|
|
|
|
#if defined(RCC_SR_PORRSTF)
|
|
|
|
|| (state & RCC_SR_PORRSTF)
|
|
|
|
#endif
|
|
|
|
#if defined(RCC_SR_BORRSTF)
|
|
|
|
|| (state & RCC_SR_BORRSTF)
|
2020-02-27 04:36:53 +00:00
|
|
|
#endif
|
|
|
|
) {
|
2016-09-06 04:20:19 +00:00
|
|
|
reset_cause = PYB_RESET_POWER_ON;
|
2018-02-23 16:54:09 +00:00
|
|
|
} else if (state & RCC_SR_PINRSTF) {
|
2016-09-06 04:20:19 +00:00
|
|
|
reset_cause = PYB_RESET_HARD;
|
|
|
|
} else {
|
|
|
|
// default is soft reset
|
|
|
|
reset_cause = PYB_RESET_SOFT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// clear RCC reset flags
|
2018-02-23 16:54:09 +00:00
|
|
|
RCC->RCC_SR |= RCC_SR_RMVF;
|
2016-09-06 04:20:19 +00:00
|
|
|
}
|
|
|
|
|
2018-02-05 04:48:28 +00:00
|
|
|
void machine_deinit(void) {
|
|
|
|
// we are doing a soft-reset so change the reset_cause
|
|
|
|
reset_cause = PYB_RESET_SOFT;
|
|
|
|
}
|
|
|
|
|
2015-10-08 04:26:04 +00:00
|
|
|
// machine.info([dump_alloc_table])
|
|
|
|
// Print out lots of information about the board.
|
2017-08-30 00:59:58 +00:00
|
|
|
STATIC mp_obj_t machine_info(size_t n_args, const mp_obj_t *args) {
|
2023-03-09 00:08:46 +00:00
|
|
|
const mp_print_t *print = &mp_plat_print;
|
|
|
|
|
2015-10-08 04:26:04 +00:00
|
|
|
// get and print unique id; 96 bits
|
|
|
|
{
|
2020-02-27 04:36:53 +00:00
|
|
|
byte *id = (byte *)MP_HAL_UNIQUE_ID_ADDRESS;
|
2023-03-09 00:08:46 +00:00
|
|
|
mp_printf(print, "ID=%02x%02x%02x%02x:%02x%02x%02x%02x:%02x%02x%02x%02x\n", id[0], id[1], id[2], id[3], id[4], id[5], id[6], id[7], id[8], id[9], id[10], id[11]);
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
|
|
|
|
2023-03-09 00:08:46 +00:00
|
|
|
mp_printf(print, "DEVID=0x%04x\nREVID=0x%04x\n", (unsigned int)HAL_GetDEVID(), (unsigned int)HAL_GetREVID());
|
2020-11-25 13:15:49 +00:00
|
|
|
|
2015-10-08 04:26:04 +00:00
|
|
|
// get and print clock speeds
|
|
|
|
// SYSCLK=168MHz, HCLK=168MHz, PCLK1=42MHz, PCLK2=84MHz
|
|
|
|
{
|
2022-02-12 20:36:58 +00:00
|
|
|
#if defined(STM32F0) || defined(STM32G0)
|
2023-03-09 00:08:46 +00:00
|
|
|
mp_printf(print, "S=%u\nH=%u\nP1=%u\n",
|
2020-02-27 04:36:53 +00:00
|
|
|
(unsigned int)HAL_RCC_GetSysClockFreq(),
|
|
|
|
(unsigned int)HAL_RCC_GetHCLKFreq(),
|
|
|
|
(unsigned int)HAL_RCC_GetPCLK1Freq());
|
2018-05-28 08:10:53 +00:00
|
|
|
#else
|
2023-03-09 00:08:46 +00:00
|
|
|
mp_printf(print, "S=%u\nH=%u\nP1=%u\nP2=%u\n",
|
2020-02-27 04:36:53 +00:00
|
|
|
(unsigned int)HAL_RCC_GetSysClockFreq(),
|
|
|
|
(unsigned int)HAL_RCC_GetHCLKFreq(),
|
|
|
|
(unsigned int)HAL_RCC_GetPCLK1Freq(),
|
|
|
|
(unsigned int)HAL_RCC_GetPCLK2Freq());
|
2018-05-28 08:10:53 +00:00
|
|
|
#endif
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// to print info about memory
|
|
|
|
{
|
2023-03-09 00:08:46 +00:00
|
|
|
mp_printf(print, "_etext=%p\n", &_etext);
|
|
|
|
mp_printf(print, "_sidata=%p\n", &_sidata);
|
|
|
|
mp_printf(print, "_sdata=%p\n", &_sdata);
|
|
|
|
mp_printf(print, "_edata=%p\n", &_edata);
|
|
|
|
mp_printf(print, "_sbss=%p\n", &_sbss);
|
|
|
|
mp_printf(print, "_ebss=%p\n", &_ebss);
|
|
|
|
mp_printf(print, "_sstack=%p\n", &_sstack);
|
|
|
|
mp_printf(print, "_estack=%p\n", &_estack);
|
|
|
|
mp_printf(print, "_ram_start=%p\n", &_ram_start);
|
|
|
|
mp_printf(print, "_heap_start=%p\n", &_heap_start);
|
|
|
|
mp_printf(print, "_heap_end=%p\n", &_heap_end);
|
|
|
|
mp_printf(print, "_ram_end=%p\n", &_ram_end);
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// qstr info
|
|
|
|
{
|
2018-07-08 13:25:11 +00:00
|
|
|
size_t n_pool, n_qstr, n_str_data_bytes, n_total_bytes;
|
2015-10-08 04:26:04 +00:00
|
|
|
qstr_pool_info(&n_pool, &n_qstr, &n_str_data_bytes, &n_total_bytes);
|
2023-03-09 00:08:46 +00:00
|
|
|
mp_printf(print, "qstr:\n n_pool=%u\n n_qstr=%u\n n_str_data_bytes=%u\n n_total_bytes=%u\n", n_pool, n_qstr, n_str_data_bytes, n_total_bytes);
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GC info
|
|
|
|
{
|
|
|
|
gc_info_t info;
|
|
|
|
gc_info(&info);
|
2023-03-09 00:08:46 +00:00
|
|
|
mp_printf(print, "GC:\n");
|
|
|
|
mp_printf(print, " %u total\n", info.total);
|
|
|
|
mp_printf(print, " %u : %u\n", info.used, info.free);
|
|
|
|
mp_printf(print, " 1=%u 2=%u m=%u\n", info.num_1block, info.num_2block, info.max_block);
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// free space on flash
|
|
|
|
{
|
2018-05-28 02:01:52 +00:00
|
|
|
#if MICROPY_VFS_FAT
|
2017-01-27 12:11:59 +00:00
|
|
|
for (mp_vfs_mount_t *vfs = MP_STATE_VM(vfs_mount_table); vfs != NULL; vfs = vfs->next) {
|
|
|
|
if (strncmp("/flash", vfs->str, vfs->len) == 0) {
|
|
|
|
// assumes that it's a FatFs filesystem
|
|
|
|
fs_user_mount_t *vfs_fat = MP_OBJ_TO_PTR(vfs->obj);
|
|
|
|
DWORD nclst;
|
|
|
|
f_getfree(&vfs_fat->fatfs, &nclst);
|
2023-03-09 00:08:46 +00:00
|
|
|
mp_printf(print, "LFS free: %u bytes\n", (uint)(nclst * vfs_fat->fatfs.csize * 512));
|
2017-01-27 12:11:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-05-28 02:01:52 +00:00
|
|
|
#endif
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
|
|
|
|
2017-02-06 04:13:30 +00:00
|
|
|
#if MICROPY_PY_THREAD
|
2023-03-09 00:36:10 +00:00
|
|
|
pyb_thread_dump(print);
|
2017-02-06 04:13:30 +00:00
|
|
|
#endif
|
|
|
|
|
2015-10-08 04:26:04 +00:00
|
|
|
if (n_args == 1) {
|
|
|
|
// arg given means dump gc allocation table
|
2023-03-09 02:50:21 +00:00
|
|
|
gc_dump_alloc_table(print);
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(machine_info_obj, 0, 1, machine_info);
|
|
|
|
|
|
|
|
// Returns a string of 12 bytes (96 bits), which is the unique ID for the MCU.
|
|
|
|
STATIC mp_obj_t machine_unique_id(void) {
|
2020-02-27 04:36:53 +00:00
|
|
|
byte *id = (byte *)MP_HAL_UNIQUE_ID_ADDRESS;
|
2015-10-08 04:26:04 +00:00
|
|
|
return mp_obj_new_bytes(id, 12);
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_0(machine_unique_id_obj, machine_unique_id);
|
|
|
|
|
|
|
|
// Resets the pyboard in a manner similar to pushing the external RESET button.
|
|
|
|
STATIC mp_obj_t machine_reset(void) {
|
2019-06-22 11:26:03 +00:00
|
|
|
powerctrl_mcu_reset();
|
2015-10-08 04:26:04 +00:00
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_0(machine_reset_obj, machine_reset);
|
|
|
|
|
2016-10-17 02:16:47 +00:00
|
|
|
STATIC mp_obj_t machine_soft_reset(void) {
|
|
|
|
pyexec_system_exit = PYEXEC_FORCED_EXIT;
|
2020-02-11 02:17:41 +00:00
|
|
|
mp_raise_type(&mp_type_SystemExit);
|
2016-10-17 02:16:47 +00:00
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_0(machine_soft_reset_obj, machine_soft_reset);
|
|
|
|
|
2015-10-08 04:26:04 +00:00
|
|
|
// Activate the bootloader without BOOT* pins.
|
2022-04-27 08:58:09 +00:00
|
|
|
NORETURN mp_obj_t machine_bootloader(size_t n_args, const mp_obj_t *args) {
|
2018-02-13 07:51:08 +00:00
|
|
|
#if MICROPY_HW_ENABLE_USB
|
2015-10-08 04:26:04 +00:00
|
|
|
pyb_usb_dev_deinit();
|
2018-02-13 07:51:08 +00:00
|
|
|
#endif
|
2018-05-28 00:57:27 +00:00
|
|
|
#if MICROPY_HW_ENABLE_STORAGE
|
2015-10-08 04:26:04 +00:00
|
|
|
storage_flush();
|
2018-05-28 00:57:27 +00:00
|
|
|
#endif
|
2015-10-08 04:26:04 +00:00
|
|
|
|
2019-07-04 00:49:51 +00:00
|
|
|
__disable_irq();
|
|
|
|
|
2022-04-27 08:58:09 +00:00
|
|
|
MICROPY_BOARD_ENTER_BOOTLOADER(n_args, args);
|
|
|
|
|
2019-05-15 06:35:09 +00:00
|
|
|
#if defined(STM32F7) || defined(STM32H7)
|
2019-06-22 11:26:03 +00:00
|
|
|
powerctrl_enter_bootloader(0, 0x1ff00000);
|
2023-03-22 05:38:49 +00:00
|
|
|
#elif defined(STM32H5)
|
|
|
|
powerctrl_enter_bootloader(0, 0x0bf97000);
|
2019-05-15 06:35:09 +00:00
|
|
|
#else
|
2019-06-22 11:26:03 +00:00
|
|
|
powerctrl_enter_bootloader(0, 0x00000000);
|
2019-05-15 06:35:09 +00:00
|
|
|
#endif
|
2015-10-08 04:26:04 +00:00
|
|
|
|
2020-02-27 04:36:53 +00:00
|
|
|
while (1) {
|
|
|
|
;
|
|
|
|
}
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
2019-02-07 05:13:57 +00:00
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(machine_bootloader_obj, 0, 1, machine_bootloader);
|
2015-10-08 04:26:04 +00:00
|
|
|
|
|
|
|
// get or set the MCU frequencies
|
2017-08-30 00:59:58 +00:00
|
|
|
STATIC mp_obj_t machine_freq(size_t n_args, const mp_obj_t *args) {
|
2015-10-08 04:26:04 +00:00
|
|
|
if (n_args == 0) {
|
|
|
|
// get
|
2018-05-28 08:10:53 +00:00
|
|
|
mp_obj_t tuple[] = {
|
2020-02-27 04:36:53 +00:00
|
|
|
mp_obj_new_int(HAL_RCC_GetSysClockFreq()),
|
|
|
|
mp_obj_new_int(HAL_RCC_GetHCLKFreq()),
|
|
|
|
mp_obj_new_int(HAL_RCC_GetPCLK1Freq()),
|
2022-02-12 20:36:58 +00:00
|
|
|
#if !defined(STM32F0) && !defined(STM32G0)
|
2020-02-27 04:36:53 +00:00
|
|
|
mp_obj_new_int(HAL_RCC_GetPCLK2Freq()),
|
|
|
|
#endif
|
2015-10-08 04:26:04 +00:00
|
|
|
};
|
2018-05-28 08:10:53 +00:00
|
|
|
return mp_obj_new_tuple(MP_ARRAY_SIZE(tuple), tuple);
|
2015-10-08 04:26:04 +00:00
|
|
|
} else {
|
|
|
|
// set
|
2022-09-19 08:56:31 +00:00
|
|
|
#if defined(STM32F0) || defined(STM32L0) || defined(STM32L1) || defined(STM32L4) || defined(STM32G0)
|
2020-03-02 11:35:22 +00:00
|
|
|
mp_raise_NotImplementedError(MP_ERROR_TEXT("machine.freq set not supported yet"));
|
2018-05-28 08:10:53 +00:00
|
|
|
#else
|
2018-09-24 04:18:18 +00:00
|
|
|
mp_int_t sysclk = mp_obj_get_int(args[0]);
|
2018-09-24 07:06:42 +00:00
|
|
|
mp_int_t ahb = sysclk;
|
2020-03-26 13:35:04 +00:00
|
|
|
#if defined(STM32H7)
|
2020-01-31 12:20:42 +00:00
|
|
|
if (ahb > 200000000) {
|
|
|
|
ahb /= 2;
|
|
|
|
}
|
|
|
|
#endif
|
2020-06-01 11:24:48 +00:00
|
|
|
#if defined(STM32WB)
|
|
|
|
mp_int_t apb1 = ahb;
|
|
|
|
mp_int_t apb2 = ahb;
|
|
|
|
#else
|
2018-09-24 07:06:42 +00:00
|
|
|
mp_int_t apb1 = ahb / 4;
|
|
|
|
mp_int_t apb2 = ahb / 2;
|
2020-06-01 11:24:48 +00:00
|
|
|
#endif
|
2018-09-24 04:18:18 +00:00
|
|
|
if (n_args > 1) {
|
|
|
|
ahb = mp_obj_get_int(args[1]);
|
|
|
|
if (n_args > 2) {
|
|
|
|
apb1 = mp_obj_get_int(args[2]);
|
|
|
|
if (n_args > 3) {
|
|
|
|
apb2 = mp_obj_get_int(args[3]);
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-24 04:18:18 +00:00
|
|
|
int ret = powerctrl_set_sysclk(sysclk, ahb, apb1, apb2);
|
|
|
|
if (ret == -MP_EINVAL) {
|
2020-03-02 11:35:22 +00:00
|
|
|
mp_raise_ValueError(MP_ERROR_TEXT("invalid freq"));
|
2018-09-24 04:18:18 +00:00
|
|
|
} else if (ret < 0) {
|
2022-07-06 11:26:42 +00:00
|
|
|
MICROPY_BOARD_FATAL_ERROR("can't change freq");
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
|
|
|
return mp_const_none;
|
2018-05-28 08:10:53 +00:00
|
|
|
#endif
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(machine_freq_obj, 0, 4, machine_freq);
|
|
|
|
|
2020-06-18 02:19:04 +00:00
|
|
|
// idle()
|
|
|
|
// This executies a wfi machine instruction which reduces power consumption
|
|
|
|
// of the MCU until an interrupt occurs, at which point execution continues.
|
|
|
|
STATIC mp_obj_t machine_idle(void) {
|
|
|
|
__WFI();
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_0(machine_idle_obj, machine_idle);
|
|
|
|
|
2018-12-26 11:44:09 +00:00
|
|
|
STATIC mp_obj_t machine_lightsleep(size_t n_args, const mp_obj_t *args) {
|
|
|
|
if (n_args != 0) {
|
|
|
|
mp_obj_t args2[2] = {MP_OBJ_NULL, args[0]};
|
|
|
|
pyb_rtc_wakeup(2, args2);
|
|
|
|
}
|
2018-11-28 01:22:20 +00:00
|
|
|
powerctrl_enter_stop_mode();
|
2015-10-08 04:26:04 +00:00
|
|
|
return mp_const_none;
|
|
|
|
}
|
2018-12-26 11:44:09 +00:00
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(machine_lightsleep_obj, 0, 1, machine_lightsleep);
|
2015-10-08 04:26:04 +00:00
|
|
|
|
2018-12-26 11:44:09 +00:00
|
|
|
STATIC mp_obj_t machine_deepsleep(size_t n_args, const mp_obj_t *args) {
|
|
|
|
if (n_args != 0) {
|
|
|
|
mp_obj_t args2[2] = {MP_OBJ_NULL, args[0]};
|
|
|
|
pyb_rtc_wakeup(2, args2);
|
|
|
|
}
|
2018-11-28 01:22:20 +00:00
|
|
|
powerctrl_enter_standby_mode();
|
2015-10-08 04:26:04 +00:00
|
|
|
return mp_const_none;
|
|
|
|
}
|
2018-12-26 11:44:09 +00:00
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(machine_deepsleep_obj, 0, 1, machine_deepsleep);
|
2015-10-08 04:26:04 +00:00
|
|
|
|
|
|
|
STATIC mp_obj_t machine_reset_cause(void) {
|
2016-09-06 04:20:19 +00:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(reset_cause);
|
2015-10-08 04:26:04 +00:00
|
|
|
}
|
2023-07-11 03:45:53 +00:00
|
|
|
MP_DEFINE_CONST_FUN_OBJ_0(machine_reset_cause_obj, machine_reset_cause);
|
2015-10-08 04:26:04 +00:00
|
|
|
|
2022-05-31 12:56:11 +00:00
|
|
|
#if MICROPY_PY_MACHINE
|
|
|
|
|
2017-05-06 07:03:40 +00:00
|
|
|
STATIC const mp_rom_map_elem_t machine_module_globals_table[] = {
|
2022-08-17 06:18:31 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_machine) },
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_info), MP_ROM_PTR(&machine_info_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_unique_id), MP_ROM_PTR(&machine_unique_id_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_reset), MP_ROM_PTR(&machine_reset_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_soft_reset), MP_ROM_PTR(&machine_soft_reset_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_bootloader), MP_ROM_PTR(&machine_bootloader_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_freq), MP_ROM_PTR(&machine_freq_obj) },
|
2020-02-27 04:36:53 +00:00
|
|
|
#if MICROPY_HW_ENABLE_RNG
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_rng), MP_ROM_PTR(&pyb_rng_get_obj) },
|
2020-02-27 04:36:53 +00:00
|
|
|
#endif
|
2020-06-18 02:19:04 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_idle), MP_ROM_PTR(&machine_idle_obj) },
|
2018-12-26 11:44:09 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_sleep), MP_ROM_PTR(&machine_lightsleep_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_lightsleep), MP_ROM_PTR(&machine_lightsleep_obj) },
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_deepsleep), MP_ROM_PTR(&machine_deepsleep_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_reset_cause), MP_ROM_PTR(&machine_reset_cause_obj) },
|
2020-02-27 04:36:53 +00:00
|
|
|
#if 0
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_wake_reason), MP_ROM_PTR(&machine_wake_reason_obj) },
|
2020-02-27 04:36:53 +00:00
|
|
|
#endif
|
2015-10-08 04:26:04 +00:00
|
|
|
|
2020-06-18 02:19:04 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_disable_irq), MP_ROM_PTR(&machine_disable_irq_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_enable_irq), MP_ROM_PTR(&machine_enable_irq_obj) },
|
2015-10-19 21:48:21 +00:00
|
|
|
|
2021-08-09 15:09:31 +00:00
|
|
|
#if MICROPY_PY_MACHINE_BITSTREAM
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_bitstream), MP_ROM_PTR(&machine_bitstream_obj) },
|
|
|
|
#endif
|
2021-02-17 02:03:52 +00:00
|
|
|
#if MICROPY_PY_MACHINE_PULSE
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_time_pulse_us), MP_ROM_PTR(&machine_time_pulse_us_obj) },
|
2021-02-17 02:03:52 +00:00
|
|
|
#endif
|
2022-10-27 14:59:36 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_dht_readinto), MP_ROM_PTR(&dht_readinto_obj) },
|
2016-10-06 01:12:20 +00:00
|
|
|
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_mem8), MP_ROM_PTR(&machine_mem8_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_mem16), MP_ROM_PTR(&machine_mem16_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_mem32), MP_ROM_PTR(&machine_mem32_obj) },
|
2015-12-14 01:40:09 +00:00
|
|
|
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_Pin), MP_ROM_PTR(&pin_type) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_Signal), MP_ROM_PTR(&machine_signal_type) },
|
2015-10-19 21:48:21 +00:00
|
|
|
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_RTC), MP_ROM_PTR(&pyb_rtc_type) },
|
2023-10-11 02:48:49 +00:00
|
|
|
#if MICROPY_PY_MACHINE_ADC
|
2019-07-20 02:37:58 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_ADC), MP_ROM_PTR(&machine_adc_type) },
|
2023-10-11 02:48:49 +00:00
|
|
|
#endif
|
2020-02-27 04:36:53 +00:00
|
|
|
#if MICROPY_PY_MACHINE_I2C
|
2020-09-16 04:09:49 +00:00
|
|
|
#if MICROPY_HW_ENABLE_HW_I2C
|
2022-10-06 17:48:07 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&machine_i2c_type) },
|
2020-09-16 04:09:49 +00:00
|
|
|
#else
|
2020-09-16 03:30:48 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&mp_machine_soft_i2c_type) },
|
2020-02-27 04:36:53 +00:00
|
|
|
#endif
|
2020-09-16 04:09:49 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_SoftI2C), MP_ROM_PTR(&mp_machine_soft_i2c_type) },
|
|
|
|
#endif
|
2021-02-17 02:03:52 +00:00
|
|
|
#if MICROPY_PY_MACHINE_SPI
|
2022-10-06 17:48:07 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&machine_spi_type) },
|
2020-09-16 04:09:49 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_SoftSPI), MP_ROM_PTR(&mp_machine_soft_spi_type) },
|
2021-02-17 02:03:52 +00:00
|
|
|
#endif
|
2023-10-09 01:12:18 +00:00
|
|
|
#if MICROPY_PY_MACHINE_I2S
|
2021-04-17 04:27:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_I2S), MP_ROM_PTR(&machine_i2s_type) },
|
|
|
|
#endif
|
2023-10-10 12:46:07 +00:00
|
|
|
#if MICROPY_PY_MACHINE_UART
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_UART), MP_ROM_PTR(&machine_uart_type) },
|
|
|
|
#endif
|
2023-10-10 07:19:03 +00:00
|
|
|
#if MICROPY_PY_MACHINE_WDT
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_WDT), MP_ROM_PTR(&machine_wdt_type) },
|
|
|
|
#endif
|
2019-10-23 05:56:38 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_Timer), MP_ROM_PTR(&machine_timer_type) },
|
2020-02-27 04:36:53 +00:00
|
|
|
#if 0
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_HeartBeat), MP_ROM_PTR(&pyb_heartbeat_type) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_SD), MP_ROM_PTR(&pyb_sd_type) },
|
2015-10-08 04:26:04 +00:00
|
|
|
|
|
|
|
// class constants
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_IDLE), MP_ROM_INT(PYB_PWR_MODE_ACTIVE) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_SLEEP), MP_ROM_INT(PYB_PWR_MODE_LPDS) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_DEEPSLEEP), MP_ROM_INT(PYB_PWR_MODE_HIBERNATE) },
|
2020-02-27 04:36:53 +00:00
|
|
|
#endif
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_PWRON_RESET), MP_ROM_INT(PYB_RESET_POWER_ON) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_HARD_RESET), MP_ROM_INT(PYB_RESET_HARD) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_WDT_RESET), MP_ROM_INT(PYB_RESET_WDT) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_DEEPSLEEP_RESET), MP_ROM_INT(PYB_RESET_DEEPSLEEP) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_SOFT_RESET), MP_ROM_INT(PYB_RESET_SOFT) },
|
2020-02-27 04:36:53 +00:00
|
|
|
#if 0
|
2017-05-06 07:03:40 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_WLAN_WAKE), MP_ROM_INT(PYB_SLP_WAKED_BY_WLAN) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_PIN_WAKE), MP_ROM_INT(PYB_SLP_WAKED_BY_GPIO) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_RTC_WAKE), MP_ROM_INT(PYB_SLP_WAKED_BY_RTC) },
|
2020-02-27 04:36:53 +00:00
|
|
|
#endif
|
2015-10-08 04:26:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
STATIC MP_DEFINE_CONST_DICT(machine_module_globals, machine_module_globals_table);
|
|
|
|
|
2022-02-02 05:04:00 +00:00
|
|
|
const mp_obj_module_t mp_module_machine = {
|
2015-10-08 04:26:04 +00:00
|
|
|
.base = { &mp_type_module },
|
2020-02-27 04:36:53 +00:00
|
|
|
.globals = (mp_obj_dict_t *)&machine_module_globals,
|
2015-10-08 04:26:04 +00:00
|
|
|
};
|
2022-04-20 06:06:22 +00:00
|
|
|
|
2023-06-02 02:33:25 +00:00
|
|
|
MP_REGISTER_EXTENSIBLE_MODULE(MP_QSTR_machine, mp_module_machine);
|
2022-05-31 12:56:11 +00:00
|
|
|
|
|
|
|
#endif // MICROPY_PY_MACHINE
|