mirror of
https://github.com/micropython/micropython.git
synced 2025-07-21 21:11:12 +02:00
Some checks failed
JavaScript code lint and formatting with Biome / eslint (push) Has been cancelled
Check code formatting / code-formatting (push) Has been cancelled
Check spelling with codespell / codespell (push) Has been cancelled
Build docs / build (push) Has been cancelled
Check examples / embedding (push) Has been cancelled
Package mpremote / build (push) Has been cancelled
.mpy file format and tools / test (push) Has been cancelled
Build ports metadata / build (push) Has been cancelled
alif port / build_alif (alif_ae3_build) (push) Has been cancelled
cc3200 port / build (push) Has been cancelled
esp32 port / build_idf (esp32_build_cmod_spiram_s2) (push) Has been cancelled
esp32 port / build_idf (esp32_build_s3_c3) (push) Has been cancelled
esp8266 port / build (push) Has been cancelled
mimxrt port / build (push) Has been cancelled
nrf port / build (push) Has been cancelled
powerpc port / build (push) Has been cancelled
qemu port / build_and_test_arm (push) Has been cancelled
qemu port / build_and_test_rv32 (push) Has been cancelled
renesas-ra port / build_renesas_ra_board (push) Has been cancelled
rp2 port / build (push) Has been cancelled
samd port / build (push) Has been cancelled
stm32 port / build_stm32 (stm32_misc_build) (push) Has been cancelled
stm32 port / build_stm32 (stm32_nucleo_build) (push) Has been cancelled
stm32 port / build_stm32 (stm32_pyb_build) (push) Has been cancelled
unix port / minimal (push) Has been cancelled
unix port / reproducible (push) Has been cancelled
unix port / standard (push) Has been cancelled
unix port / standard_v2 (push) Has been cancelled
unix port / coverage (push) Has been cancelled
unix port / coverage_32bit (push) Has been cancelled
unix port / nanbox (push) Has been cancelled
unix port / float (push) Has been cancelled
unix port / stackless_clang (push) Has been cancelled
unix port / float_clang (push) Has been cancelled
unix port / settrace (push) Has been cancelled
unix port / settrace_stackless (push) Has been cancelled
unix port / macos (push) Has been cancelled
unix port / qemu_mips (push) Has been cancelled
unix port / qemu_arm (push) Has been cancelled
unix port / qemu_riscv64 (push) Has been cancelled
webassembly port / build (push) Has been cancelled
windows port / build-vs (Debug, x64, windows-2022, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Debug, x64, windows-latest, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Debug, x86, windows-2022, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Debug, x86, windows-latest, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-2019, dev, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-2019, standard, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-2022, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-2022, standard, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-latest, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-latest, standard, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-2019, dev, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-2019, standard, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-2022, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-2022, standard, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-latest, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-latest, standard, 2017, [15, 16)) (push) Has been cancelled
windows port / build-mingw (i686, mingw32, dev) (push) Has been cancelled
windows port / build-mingw (i686, mingw32, standard) (push) Has been cancelled
windows port / build-mingw (x86_64, mingw64, dev) (push) Has been cancelled
windows port / build-mingw (x86_64, mingw64, standard) (push) Has been cancelled
windows port / cross-build-on-linux (push) Has been cancelled
zephyr port / build (push) Has been cancelled
Python code lint and formatting with ruff / ruff (push) Has been cancelled
This commit renames the NORETURN macro, indicating to the compiler
that a function does not return, into MP_NORETURN to maintain the same
naming convention of other similar macros.
To maintain compaitiblity with existing code NORETURN is aliased to
MP_NORETURN, but it is also deprecated for MicroPython v2.
This changeset was created using a similar process to
decf8e6a8b
("all: Remove the "STATIC"
macro and just use "static" instead."), with no documentation or python
scripts to change to reflect the new macro name.
Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
234 lines
6.6 KiB
C
234 lines
6.6 KiB
C
/*
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
* Copyright (c) 2016-2017 Linaro Limited
|
|
* Copyright (c) 2020 NXP
|
|
*
|
|
* 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.
|
|
*/
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include <zephyr/version.h>
|
|
#ifdef CONFIG_NETWORKING
|
|
#include <zephyr/net/net_context.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_USB_DEVICE_STACK
|
|
#include <zephyr/usb/usb_device.h>
|
|
#endif
|
|
|
|
#include <zephyr/storage/flash_map.h>
|
|
|
|
#include "py/mperrno.h"
|
|
#include "py/builtin.h"
|
|
#include "py/compile.h"
|
|
#include "py/runtime.h"
|
|
#include "py/repl.h"
|
|
#include "py/gc.h"
|
|
#include "py/mphal.h"
|
|
#include "py/stackctrl.h"
|
|
#include "shared/runtime/gchelper.h"
|
|
#include "shared/runtime/pyexec.h"
|
|
#include "shared/readline/readline.h"
|
|
#include "extmod/modbluetooth.h"
|
|
|
|
#if MICROPY_VFS
|
|
#include "extmod/vfs.h"
|
|
#endif
|
|
|
|
#include "modmachine.h"
|
|
#include "modzephyr.h"
|
|
|
|
static char heap[MICROPY_HEAP_SIZE];
|
|
|
|
#if defined(CONFIG_USB_DEVICE_STACK_NEXT)
|
|
extern int mp_usbd_init(void);
|
|
#endif // defined(CONFIG_USB_DEVICE_STACK_NEXT)
|
|
|
|
void init_zephyr(void) {
|
|
// We now rely on CONFIG_NET_APP_SETTINGS to set up bootstrap
|
|
// network addresses.
|
|
#if 0
|
|
#ifdef CONFIG_NETWORKING
|
|
if (net_if_get_default() == NULL) {
|
|
// If there's no default networking interface,
|
|
// there's nothing to configure.
|
|
return;
|
|
}
|
|
#endif
|
|
#ifdef CONFIG_NET_IPV4
|
|
static struct in_addr in4addr_my = {{{192, 0, 2, 1}}};
|
|
net_if_ipv4_addr_add(net_if_get_default(), &in4addr_my, NET_ADDR_MANUAL, 0);
|
|
static struct in_addr in4netmask_my = {{{255, 255, 255, 0}}};
|
|
net_if_ipv4_set_netmask(net_if_get_default(), &in4netmask_my);
|
|
static struct in_addr in4gw_my = {{{192, 0, 2, 2}}};
|
|
net_if_ipv4_set_gw(net_if_get_default(), &in4gw_my);
|
|
#endif
|
|
#ifdef CONFIG_NET_IPV6
|
|
// 2001:db8::1
|
|
static struct in6_addr in6addr_my = {{{0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}}};
|
|
net_if_ipv6_addr_add(net_if_get_default(), &in6addr_my, NET_ADDR_MANUAL, 0);
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
#if MICROPY_VFS
|
|
static void vfs_init(void) {
|
|
mp_obj_t bdev = NULL;
|
|
mp_obj_t mount_point;
|
|
const char *mount_point_str = NULL;
|
|
int ret = 0;
|
|
|
|
#ifdef CONFIG_DISK_DRIVER_SDMMC
|
|
#if KERNEL_VERSION_NUMBER >= ZEPHYR_VERSION(4, 0, 0)
|
|
mp_obj_t args[] = { mp_obj_new_str_from_cstr(DT_PROP(DT_INST(0, zephyr_sdmmc_disk), disk_name)) };
|
|
#else
|
|
mp_obj_t args[] = { mp_obj_new_str_from_cstr(CONFIG_SDMMC_VOLUME_NAME) };
|
|
#endif
|
|
bdev = MP_OBJ_TYPE_GET_SLOT(&zephyr_disk_access_type, make_new)(&zephyr_disk_access_type, ARRAY_SIZE(args), 0, args);
|
|
mount_point_str = "/sd";
|
|
#elif defined(CONFIG_FLASH_MAP) && FIXED_PARTITION_EXISTS(storage_partition)
|
|
mp_obj_t args[] = { MP_OBJ_NEW_SMALL_INT(FIXED_PARTITION_ID(storage_partition)), MP_OBJ_NEW_SMALL_INT(4096) };
|
|
bdev = MP_OBJ_TYPE_GET_SLOT(&zephyr_flash_area_type, make_new)(&zephyr_flash_area_type, ARRAY_SIZE(args), 0, args);
|
|
mount_point_str = "/flash";
|
|
#endif
|
|
|
|
if ((bdev != NULL)) {
|
|
mount_point = mp_obj_new_str_from_cstr(mount_point_str);
|
|
ret = mp_vfs_mount_and_chdir_protected(bdev, mount_point);
|
|
// TODO: if this failed, make a new file system and try to mount again
|
|
}
|
|
}
|
|
#endif // MICROPY_VFS
|
|
|
|
int real_main(void) {
|
|
volatile int stack_dummy = 0;
|
|
|
|
#if MICROPY_PY_THREAD
|
|
struct k_thread *z_thread = (struct k_thread *)k_current_get();
|
|
mp_thread_init((void *)z_thread->stack_info.start, z_thread->stack_info.size / sizeof(uintptr_t));
|
|
#endif
|
|
|
|
init_zephyr();
|
|
mp_hal_init();
|
|
|
|
soft_reset:
|
|
mp_stack_set_top((void *)&stack_dummy);
|
|
// Make MicroPython's stack limit somewhat smaller than full stack available
|
|
mp_stack_set_limit(CONFIG_MAIN_STACK_SIZE - 512);
|
|
#if MICROPY_ENABLE_GC
|
|
gc_init(heap, heap + sizeof(heap));
|
|
#endif
|
|
mp_init();
|
|
|
|
#ifdef CONFIG_USB_DEVICE_STACK
|
|
usb_enable(NULL);
|
|
#endif
|
|
|
|
#ifdef CONFIG_USB_DEVICE_STACK_NEXT
|
|
mp_usbd_init();
|
|
#endif
|
|
|
|
#if MICROPY_VFS
|
|
vfs_init();
|
|
#endif
|
|
|
|
#if MICROPY_MODULE_FROZEN || MICROPY_VFS
|
|
pyexec_file_if_exists("main.py");
|
|
#endif
|
|
|
|
for (;;) {
|
|
if (pyexec_mode_kind == PYEXEC_MODE_RAW_REPL) {
|
|
if (pyexec_raw_repl() != 0) {
|
|
break;
|
|
}
|
|
} else {
|
|
if (pyexec_friendly_repl() != 0) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
printf("soft reboot\n");
|
|
|
|
#if MICROPY_PY_BLUETOOTH
|
|
mp_bluetooth_deinit();
|
|
#endif
|
|
#if MICROPY_PY_MACHINE
|
|
machine_pin_deinit();
|
|
#endif
|
|
|
|
#if MICROPY_PY_THREAD
|
|
mp_thread_deinit();
|
|
gc_collect();
|
|
#endif
|
|
|
|
gc_sweep_all();
|
|
mp_deinit();
|
|
|
|
goto soft_reset;
|
|
|
|
return 0;
|
|
}
|
|
|
|
void gc_collect(void) {
|
|
gc_collect_start();
|
|
gc_helper_collect_regs_and_stack();
|
|
#if MICROPY_PY_THREAD
|
|
mp_thread_gc_others();
|
|
#endif
|
|
gc_collect_end();
|
|
}
|
|
|
|
#if !MICROPY_READER_VFS
|
|
mp_lexer_t *mp_lexer_new_from_file(qstr filename) {
|
|
mp_raise_OSError(ENOENT);
|
|
}
|
|
#endif
|
|
|
|
#if !MICROPY_VFS
|
|
mp_import_stat_t mp_import_stat(const char *path) {
|
|
return MP_IMPORT_STAT_NO_EXIST;
|
|
}
|
|
|
|
mp_obj_t mp_builtin_open(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
|
|
return mp_const_none;
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_KW(mp_builtin_open_obj, 1, mp_builtin_open);
|
|
#endif
|
|
|
|
MP_NORETURN void nlr_jump_fail(void *val) {
|
|
while (1) {
|
|
;
|
|
}
|
|
}
|
|
|
|
#ifndef NDEBUG
|
|
void MP_WEAK __assert_func(const char *file, int line, const char *func, const char *expr) {
|
|
printf("Assertion '%s' failed, at file %s:%d\n", expr, file, line);
|
|
__fatal_error("Assertion failed");
|
|
}
|
|
#endif
|