2014-11-27 20:30:33 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDED_MPHAL_H_
|
|
|
|
#define _INCLUDED_MPHAL_H_
|
|
|
|
|
2016-03-30 16:50:38 +01:00
|
|
|
#include "py/ringbuf.h"
|
2016-09-29 18:13:17 +01:00
|
|
|
#include "lib/utils/interrupt_char.h"
|
2016-05-26 17:11:43 +01:00
|
|
|
#include "xtirq.h"
|
2016-03-30 16:50:38 +01:00
|
|
|
|
2016-05-23 23:37:56 +01:00
|
|
|
void mp_keyboard_interrupt(void);
|
|
|
|
|
2016-03-29 09:48:43 +01:00
|
|
|
struct _mp_print_t;
|
|
|
|
// Structure for UART-only output via mp_printf()
|
|
|
|
extern const struct _mp_print_t mp_debug_print;
|
|
|
|
|
2016-03-30 16:50:38 +01:00
|
|
|
extern ringbuf_t input_buf;
|
|
|
|
// Call this after putting data to input_buf
|
|
|
|
void mp_hal_signal_input(void);
|
2016-03-31 17:49:55 +01:00
|
|
|
// Call this when data is available in dupterm object
|
|
|
|
void mp_hal_signal_dupterm_input(void);
|
2016-03-30 16:50:38 +01:00
|
|
|
|
2014-11-27 20:30:33 +00:00
|
|
|
void mp_hal_init(void);
|
2016-02-08 19:43:37 +00:00
|
|
|
void mp_hal_rtc_init(void);
|
2014-11-27 20:30:33 +00:00
|
|
|
|
2015-12-28 17:27:44 +00:00
|
|
|
uint32_t mp_hal_ticks_us(void);
|
2016-08-07 14:03:00 +01:00
|
|
|
__attribute__((always_inline)) static inline uint32_t mp_hal_ticks_cpu(void) {
|
|
|
|
uint32_t ccount;
|
|
|
|
__asm__ __volatile__("rsr %0,ccount":"=a" (ccount));
|
|
|
|
return ccount;
|
|
|
|
}
|
|
|
|
|
2015-10-28 23:06:13 +00:00
|
|
|
void mp_hal_delay_us(uint32_t);
|
2014-11-27 20:30:33 +00:00
|
|
|
void mp_hal_set_interrupt_char(int c);
|
|
|
|
uint32_t mp_hal_get_cpu_freq(void);
|
|
|
|
|
2015-01-15 23:54:40 +00:00
|
|
|
#define UART_TASK_ID 0
|
2016-03-31 17:49:55 +01:00
|
|
|
#define DUPTERM_TASK_ID 1
|
2015-01-15 23:54:40 +00:00
|
|
|
void uart_task_init();
|
2016-03-31 17:49:55 +01:00
|
|
|
void dupterm_task_init();
|
2015-01-15 23:54:40 +00:00
|
|
|
|
2016-03-11 02:38:20 +00:00
|
|
|
void ets_event_poll(void);
|
2016-03-30 09:35:03 +01:00
|
|
|
#define ETS_POLL_WHILE(cond) { while (cond) ets_event_poll(); }
|
2015-02-13 15:04:53 +00:00
|
|
|
|
2016-04-12 13:55:20 +01:00
|
|
|
// needed for machine.I2C
|
|
|
|
#include "osapi.h"
|
|
|
|
#define mp_hal_delay_us_fast(us) os_delay_us(us)
|
|
|
|
|
2016-05-26 17:11:43 +01:00
|
|
|
#define mp_hal_quiet_timing_enter() disable_irq()
|
|
|
|
#define mp_hal_quiet_timing_exit(irq_state) enable_irq(irq_state)
|
|
|
|
|
2016-04-12 13:54:40 +01:00
|
|
|
// C-level pin HAL
|
|
|
|
#include "etshal.h"
|
|
|
|
#include "gpio.h"
|
|
|
|
#include "esp8266/modpyb.h"
|
2016-04-22 10:04:12 +01:00
|
|
|
#define mp_hal_pin_obj_t uint32_t
|
|
|
|
#define mp_hal_get_pin_obj(o) mp_obj_get_pin(o)
|
2016-05-26 15:42:27 +01:00
|
|
|
void mp_hal_pin_input(mp_hal_pin_obj_t pin);
|
|
|
|
void mp_hal_pin_output(mp_hal_pin_obj_t pin);
|
2016-05-26 17:06:40 +01:00
|
|
|
void mp_hal_pin_open_drain(mp_hal_pin_obj_t pin);
|
|
|
|
#define mp_hal_pin_od_low(p) do { \
|
2016-04-22 10:35:26 +01:00
|
|
|
if ((p) == 16) { WRITE_PERI_REG(RTC_GPIO_ENABLE, (READ_PERI_REG(RTC_GPIO_ENABLE) & ~1) | 1); } \
|
|
|
|
else { gpio_output_set(0, 1 << (p), 1 << (p), 0); } \
|
|
|
|
} while (0)
|
|
|
|
#define mp_hal_pin_od_high(p) do { \
|
|
|
|
if ((p) == 16) { WRITE_PERI_REG(RTC_GPIO_ENABLE, (READ_PERI_REG(RTC_GPIO_ENABLE) & ~1)); } \
|
|
|
|
else { gpio_output_set(1 << (p), 0, 1 << (p), 0); } \
|
|
|
|
} while (0)
|
|
|
|
#define mp_hal_pin_read(p) pin_get(p)
|
2016-04-22 10:44:06 +01:00
|
|
|
#define mp_hal_pin_write(p, v) pin_set((p), (v))
|
2016-04-12 13:54:40 +01:00
|
|
|
|
2016-05-02 22:18:14 +01:00
|
|
|
void *ets_get_esf_buf_ctlblk(void);
|
|
|
|
int ets_esf_free_bufs(int idx);
|
|
|
|
|
2014-11-27 20:30:33 +00:00
|
|
|
#endif // _INCLUDED_MPHAL_H_
|