2014-11-27 20:30:33 +00:00
|
|
|
/*
|
2017-06-30 07:22:17 +00:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2014-11-27 20:30:33 +00:00
|
|
|
*
|
|
|
|
* 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 "ets_sys.h"
|
|
|
|
#include "etshal.h"
|
|
|
|
#include "uart.h"
|
|
|
|
#include "esp_mphal.h"
|
2015-05-10 15:54:09 +00:00
|
|
|
#include "user_interface.h"
|
2016-03-11 02:38:20 +00:00
|
|
|
#include "ets_alt_task.h"
|
2017-02-15 06:45:36 +00:00
|
|
|
#include "py/runtime.h"
|
2019-06-19 04:02:38 +00:00
|
|
|
#include "py/stream.h"
|
2016-03-29 08:13:32 +00:00
|
|
|
#include "extmod/misc.h"
|
2016-03-31 16:49:55 +00:00
|
|
|
#include "lib/utils/pyexec.h"
|
2014-11-27 20:30:33 +00:00
|
|
|
|
2018-05-15 05:13:58 +00:00
|
|
|
STATIC byte stdin_ringbuf_array[256];
|
|
|
|
ringbuf_t stdin_ringbuf = {stdin_ringbuf_array, sizeof(stdin_ringbuf_array), 0, 0};
|
2016-03-29 08:48:43 +00:00
|
|
|
void mp_hal_debug_tx_strn_cooked(void *env, const char *str, uint32_t len);
|
|
|
|
const mp_print_t mp_debug_print = {NULL, mp_hal_debug_tx_strn_cooked};
|
|
|
|
|
2018-05-15 05:13:58 +00:00
|
|
|
int uart_attached_to_dupterm;
|
|
|
|
|
2014-11-27 20:30:33 +00:00
|
|
|
void mp_hal_init(void) {
|
2020-04-16 07:13:57 +00:00
|
|
|
// ets_wdt_disable(); // it's a pain while developing
|
2016-02-08 19:43:37 +00:00
|
|
|
mp_hal_rtc_init();
|
2014-11-27 20:30:33 +00:00
|
|
|
uart_init(UART_BIT_RATE_115200, UART_BIT_RATE_115200);
|
2018-05-15 05:13:58 +00:00
|
|
|
uart_attached_to_dupterm = 0;
|
2014-11-27 20:30:33 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 05:04:25 +00:00
|
|
|
void MP_FASTCODE(mp_hal_delay_us)(uint32_t us) {
|
2016-03-23 11:01:21 +00:00
|
|
|
uint32_t start = system_get_time();
|
|
|
|
while (system_get_time() - start < us) {
|
|
|
|
ets_event_poll();
|
|
|
|
}
|
2014-11-27 20:30:33 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 04:02:38 +00:00
|
|
|
uintptr_t mp_hal_stdio_poll(uintptr_t poll_flags) {
|
|
|
|
uintptr_t ret = 0;
|
|
|
|
if ((poll_flags & MP_STREAM_POLL_RD) && stdin_ringbuf.iget != stdin_ringbuf.iput) {
|
|
|
|
ret |= MP_STREAM_POLL_RD;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-02-13 15:04:53 +00:00
|
|
|
int mp_hal_stdin_rx_chr(void) {
|
|
|
|
for (;;) {
|
2018-05-15 05:13:58 +00:00
|
|
|
int c = ringbuf_get(&stdin_ringbuf);
|
2015-02-13 15:04:53 +00:00
|
|
|
if (c != -1) {
|
|
|
|
return c;
|
|
|
|
}
|
2016-09-18 21:23:38 +00:00
|
|
|
#if 0
|
|
|
|
// Idles CPU but need more testing before enabling
|
|
|
|
if (!ets_loop_iter()) {
|
2020-02-27 04:36:53 +00:00
|
|
|
asm ("waiti 0");
|
2016-09-18 21:23:38 +00:00
|
|
|
}
|
|
|
|
#else
|
2015-10-28 23:06:13 +00:00
|
|
|
mp_hal_delay_us(1);
|
2016-09-18 21:23:38 +00:00
|
|
|
#endif
|
2015-02-13 15:04:53 +00:00
|
|
|
}
|
2014-11-27 20:30:33 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 08:48:43 +00:00
|
|
|
#if 0
|
|
|
|
void mp_hal_debug_str(const char *str) {
|
|
|
|
while (*str) {
|
|
|
|
uart_tx_one_char(UART0, *str++);
|
|
|
|
}
|
|
|
|
uart_flush(UART0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-02-13 15:04:53 +00:00
|
|
|
void mp_hal_stdout_tx_str(const char *str) {
|
2018-05-15 05:13:58 +00:00
|
|
|
mp_uos_dupterm_tx_strn(str, strlen(str));
|
2014-11-27 20:30:33 +00:00
|
|
|
}
|
|
|
|
|
2015-02-13 15:04:53 +00:00
|
|
|
void mp_hal_stdout_tx_strn(const char *str, uint32_t len) {
|
2018-05-15 05:13:58 +00:00
|
|
|
mp_uos_dupterm_tx_strn(str, len);
|
2014-11-27 20:30:33 +00:00
|
|
|
}
|
|
|
|
|
2015-02-13 15:04:53 +00:00
|
|
|
void mp_hal_stdout_tx_strn_cooked(const char *str, uint32_t len) {
|
2017-10-03 08:36:49 +00:00
|
|
|
const char *last = str;
|
2014-11-27 20:30:33 +00:00
|
|
|
while (len--) {
|
|
|
|
if (*str == '\n') {
|
2017-10-03 08:36:49 +00:00
|
|
|
if (str > last) {
|
|
|
|
mp_uos_dupterm_tx_strn(last, str - last);
|
|
|
|
}
|
|
|
|
mp_uos_dupterm_tx_strn("\r\n", 2);
|
|
|
|
++str;
|
|
|
|
last = str;
|
|
|
|
} else {
|
2018-05-15 05:13:58 +00:00
|
|
|
++str;
|
2014-11-27 20:30:33 +00:00
|
|
|
}
|
2017-10-03 08:36:49 +00:00
|
|
|
}
|
|
|
|
if (str > last) {
|
|
|
|
mp_uos_dupterm_tx_strn(last, str - last);
|
2014-11-27 20:30:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-29 08:48:43 +00:00
|
|
|
void mp_hal_debug_tx_strn_cooked(void *env, const char *str, uint32_t len) {
|
|
|
|
(void)env;
|
|
|
|
while (len--) {
|
|
|
|
if (*str == '\n') {
|
|
|
|
uart_tx_one_char(UART0, '\r');
|
|
|
|
}
|
|
|
|
uart_tx_one_char(UART0, *str++);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-02 05:04:25 +00:00
|
|
|
uint32_t MP_FASTCODE(mp_hal_ticks_ms)(void) {
|
2019-05-22 05:05:03 +00:00
|
|
|
// Compute milliseconds from 64-bit microsecond counter
|
|
|
|
system_time_update();
|
|
|
|
return ((uint64_t)system_time_high_word << 32 | (uint64_t)system_time_low_word) / 1000;
|
2014-11-27 20:30:33 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 05:04:25 +00:00
|
|
|
void MP_FASTCODE(mp_hal_delay_ms)(uint32_t delay) {
|
2015-10-29 10:03:44 +00:00
|
|
|
mp_hal_delay_us(delay * 1000);
|
2014-11-27 20:30:33 +00:00
|
|
|
}
|
|
|
|
|
2020-08-01 13:50:23 +00:00
|
|
|
uint64_t mp_hal_time_ns(void) {
|
2020-09-14 02:15:03 +00:00
|
|
|
return pyb_rtc_get_us_since_epoch() * 1000ULL;
|
2020-08-01 13:50:23 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 02:38:20 +00:00
|
|
|
void ets_event_poll(void) {
|
|
|
|
ets_loop_iter();
|
2020-02-05 14:05:47 +00:00
|
|
|
mp_handle_pending(true);
|
2016-03-11 02:38:20 +00:00
|
|
|
}
|
|
|
|
|
2015-12-29 18:44:55 +00:00
|
|
|
void __assert_func(const char *file, int line, const char *func, const char *expr) {
|
|
|
|
printf("assert:%s:%d:%s: %s\n", file, line, func, expr);
|
2020-03-02 11:35:22 +00:00
|
|
|
mp_raise_msg(&mp_type_AssertionError, MP_ERROR_TEXT("C-level assert"));
|
2015-12-29 18:44:55 +00:00
|
|
|
}
|
2016-03-30 15:50:38 +00:00
|
|
|
|
2020-05-02 05:04:25 +00:00
|
|
|
// May be called by uart0_rx_intr_handler.
|
|
|
|
void MP_FASTCODE(mp_hal_signal_input)(void) {
|
2016-04-01 11:02:36 +00:00
|
|
|
#if MICROPY_REPL_EVENT_DRIVEN
|
2016-03-30 15:50:38 +00:00
|
|
|
system_os_post(UART_TASK_ID, 0, 0);
|
2016-04-01 11:02:36 +00:00
|
|
|
#endif
|
2016-03-30 15:50:38 +00:00
|
|
|
}
|
2016-03-31 16:49:55 +00:00
|
|
|
|
|
|
|
STATIC void dupterm_task_handler(os_event_t *evt) {
|
2016-04-17 15:11:04 +00:00
|
|
|
static byte lock;
|
|
|
|
if (lock) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
lock = 1;
|
2016-03-31 16:49:55 +00:00
|
|
|
while (1) {
|
2017-10-13 09:01:57 +00:00
|
|
|
int c = mp_uos_dupterm_rx_chr();
|
2016-03-31 16:49:55 +00:00
|
|
|
if (c < 0) {
|
|
|
|
break;
|
|
|
|
}
|
2018-05-15 05:13:58 +00:00
|
|
|
ringbuf_put(&stdin_ringbuf, c);
|
2016-03-31 16:49:55 +00:00
|
|
|
}
|
|
|
|
mp_hal_signal_input();
|
2016-04-17 15:11:04 +00:00
|
|
|
lock = 0;
|
2016-03-31 16:49:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
STATIC os_event_t dupterm_evt_queue[4];
|
|
|
|
|
|
|
|
void dupterm_task_init() {
|
|
|
|
system_os_task(dupterm_task_handler, DUPTERM_TASK_ID, dupterm_evt_queue, MP_ARRAY_SIZE(dupterm_evt_queue));
|
|
|
|
}
|
|
|
|
|
|
|
|
void mp_hal_signal_dupterm_input(void) {
|
|
|
|
system_os_post(DUPTERM_TASK_ID, 0, 0);
|
|
|
|
}
|
2016-04-22 09:04:12 +00:00
|
|
|
|
2016-05-02 21:18:14 +00:00
|
|
|
// Get pointer to esf_buf bookkeeping structure
|
|
|
|
void *ets_get_esf_buf_ctlblk(void) {
|
|
|
|
// Get literal ptr before start of esf_rx_buf_alloc func
|
|
|
|
extern void *esf_rx_buf_alloc();
|
2020-02-27 04:36:53 +00:00
|
|
|
return ((void **)esf_rx_buf_alloc)[-1];
|
2016-05-02 21:18:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get number of esf_buf free buffers of given type, as encoded by index
|
|
|
|
// idx 0 corresponds to buf types 1, 2; 1 - 4; 2 - 5; 3 - 7; 4 - 8
|
|
|
|
// Only following buf types appear to be used:
|
|
|
|
// 1 - tx buffer, 5 - management frame tx buffer; 8 - rx buffer
|
|
|
|
int ets_esf_free_bufs(int idx) {
|
|
|
|
uint32_t *p = ets_get_esf_buf_ctlblk();
|
2020-02-27 04:36:53 +00:00
|
|
|
uint32_t *b = (uint32_t *)p[idx];
|
2016-05-02 21:18:14 +00:00
|
|
|
int cnt = 0;
|
|
|
|
while (b) {
|
2020-02-27 04:36:53 +00:00
|
|
|
b = (uint32_t *)b[0x20 / 4];
|
2016-05-02 21:18:14 +00:00
|
|
|
cnt++;
|
|
|
|
}
|
|
|
|
return cnt;
|
|
|
|
}
|