Skip to content
Snippets Groups Projects
Select Git revision
  • ec12a3cc0fd168102f34d9930c6e9787e5330d95
  • master default protected
  • esp32-nimble-wiki
  • rahix/hw-lock-new-mutex
  • dx/somewhat-more-dynamic-config
  • schneider/sdk-0.2.1-7
  • schneider/bsec
  • dx/meh-bdf-to-stm
  • dx/flatten-config-module
  • genofire/ble-follow-py
  • schneider/ble-stability
  • schneider/ble-stability-new-phy
  • add_menu_vibration
  • plaetzchen/ios-workaround
  • blinkisync-as-preload
  • schneider/max30001-pycardium
  • schneider/max30001-epicaridum
  • schneider/max30001
  • schneider/stream-locks
  • schneider/fundamental-test
  • schneider/ble-buffers
  • v1.12
  • v1.11
  • v1.10
  • v1.9
  • v1.8
  • v1.7
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
37 results

light_sensor.c

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    main.c 2.79 KiB
    /*
     * This file is part of the Micro Python project, http://micropython.org/
     *
     * The MIT License (MIT)
     *
     * Copyright (c) 2014 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.
     */
    
    #include <stdio.h>
    #include <string.h>
    
    #include "py/nlr.h"
    #include "py/compile.h"
    #include "py/runtime0.h"
    #include "py/runtime.h"
    #include "py/stackctrl.h"
    #include "py/mphal.h"
    #include "py/gc.h"
    #include "lib/utils/pyexec.h"
    #include "gccollect.h"
    #include "user_interface.h"
    
    STATIC char heap[16384];
    
    STATIC void mp_reset(void) {
        mp_stack_set_limit(10240);
        mp_hal_init();
        gc_init(heap, heap + sizeof(heap));
        mp_init();
        mp_obj_list_init(mp_sys_path, 0);
        mp_obj_list_init(mp_sys_argv, 0);
    #if MICROPY_MODULE_FROZEN
        pyexec_frozen_module("main");
    #endif
    }
    
    void soft_reset(void) {
        mp_hal_stdout_tx_str("PYB: soft reset\r\n");
        mp_hal_delay_us(10000); // allow UART to flush output
        mp_reset();
        pyexec_event_repl_init();
    }
    
    void init_done(void) {
        mp_reset();
        mp_hal_stdout_tx_str("\r\n");
        pyexec_event_repl_init();
        uart_task_init();
    }
    
    void user_init(void) {
        system_init_done_cb(init_done);
    }
    
    mp_lexer_t *mp_lexer_new_from_file(const char *filename) {
        return NULL;
    }
    
    mp_import_stat_t mp_import_stat(const char *path) {
        return MP_IMPORT_STAT_NO_EXIST;
    }
    
    mp_obj_t mp_builtin_open(uint 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);
    
    void nlr_jump_fail(void *val) {
        printf("NLR jump failed\n");
        for (;;) {
        }
    }
    
    //void __assert(const char *file, int line, const char *func, const char *expr) {
    void __assert(const char *file, int line, const char *expr) {
        printf("Assertion '%s' failed, at file %s:%d\n", expr, file, line);
        for (;;) {
        }
    }