2016-08-26 19:56:03 -04:00
|
|
|
/*
|
2016-11-03 18:50:59 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2016-08-26 19:56:03 -04:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2016-11-03 18:50:59 -04:00
|
|
|
* Copyright (c) 2016 Scott Shawcroft
|
2016-08-26 19:56:03 -04:00
|
|
|
*
|
|
|
|
* 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-08-25 22:17:07 -04:00
|
|
|
#ifndef MICROPY_INCLUDED_SHARED_BINDINGS_MICROCONTROLLER___INIT___H
|
|
|
|
#define MICROPY_INCLUDED_SHARED_BINDINGS_MICROCONTROLLER___INIT___H
|
2016-11-03 18:50:59 -04:00
|
|
|
|
|
|
|
#include "py/obj.h"
|
2020-09-24 01:29:04 -04:00
|
|
|
#include "py/mpconfig.h"
|
2021-01-20 19:47:18 -05:00
|
|
|
#include "py/objtuple.h"
|
2016-11-03 18:50:59 -04:00
|
|
|
|
2017-08-31 13:48:30 -04:00
|
|
|
#include "common-hal/microcontroller/Processor.h"
|
2020-11-21 23:29:52 -05:00
|
|
|
#include "shared-bindings/microcontroller/ResetReason.h"
|
2018-01-02 21:25:41 -05:00
|
|
|
#include "shared-bindings/microcontroller/RunMode.h"
|
|
|
|
|
2016-11-03 18:50:59 -04:00
|
|
|
extern void common_hal_mcu_delay_us(uint32_t);
|
|
|
|
|
2016-11-30 18:08:34 -05:00
|
|
|
extern void common_hal_mcu_disable_interrupts(void);
|
|
|
|
extern void common_hal_mcu_enable_interrupts(void);
|
|
|
|
|
2018-01-02 21:25:41 -05:00
|
|
|
extern void common_hal_mcu_on_next_reset(mcu_runmode_t runmode);
|
|
|
|
extern void common_hal_mcu_reset(void);
|
|
|
|
|
2016-11-03 18:50:59 -04:00
|
|
|
extern const mp_obj_dict_t mcu_pin_globals;
|
|
|
|
|
2021-01-20 19:47:18 -05:00
|
|
|
#if CIRCUITPY_PROCESSOR_COUNT == 1
|
2017-08-31 13:48:30 -04:00
|
|
|
extern const mcu_processor_obj_t common_hal_mcu_processor_obj;
|
2021-01-20 19:47:18 -05:00
|
|
|
#elif CIRCUITPY_PROCESSOR_COUNT > 1
|
2021-01-28 17:06:30 -05:00
|
|
|
extern const mcu_processor_obj_t common_hal_mcu_processor_obj;
|
|
|
|
extern const mp_rom_obj_tuple_t common_hal_multi_processor_obj;
|
2021-01-20 19:47:18 -05:00
|
|
|
#else
|
|
|
|
#error "Invalid processor count"
|
|
|
|
#endif
|
2017-08-31 13:48:30 -04:00
|
|
|
|
|
|
|
|
2021-08-04 19:27:54 -04:00
|
|
|
#if CIRCUITPY_NVM && CIRCUITPY_INTERNAL_NVM_SIZE > 0
|
2017-08-25 16:00:27 -04:00
|
|
|
#include "common-hal/nvm/ByteArray.h"
|
|
|
|
extern const nvm_bytearray_obj_t common_hal_mcu_nvm_obj;
|
2020-05-21 01:47:23 -04:00
|
|
|
#endif
|
2017-08-25 16:00:27 -04:00
|
|
|
|
2020-05-21 01:47:23 -04:00
|
|
|
#if CIRCUITPY_WATCHDOG
|
2020-05-22 00:35:29 -04:00
|
|
|
#include "common-hal/watchdog/WatchDogTimer.h"
|
|
|
|
extern watchdog_watchdogtimer_obj_t common_hal_mcu_watchdogtimer_obj;
|
2017-08-25 16:00:27 -04:00
|
|
|
#endif
|
|
|
|
|
2017-08-25 22:17:07 -04:00
|
|
|
#endif // MICROPY_INCLUDED_SHARED_BINDINGS_MICROCONTROLLER___INIT___H
|