2014-06-16 05:33:14 +00:00
|
|
|
#include <stdio.h>
|
2015-02-13 15:04:53 +00:00
|
|
|
#include <string.h>
|
2014-06-16 05:33:14 +00:00
|
|
|
|
2015-02-13 15:04:53 +00:00
|
|
|
#include "py/mpstate.h"
|
2015-10-30 23:03:58 +00:00
|
|
|
#include "py/mphal.h"
|
2015-02-13 15:04:53 +00:00
|
|
|
#include "usb.h"
|
|
|
|
#include "uart.h"
|
2014-06-16 05:33:14 +00:00
|
|
|
#include "Arduino.h"
|
|
|
|
|
2015-10-30 23:03:58 +00:00
|
|
|
mp_uint_t mp_hal_ticks_ms(void) {
|
2014-09-28 18:21:13 +00:00
|
|
|
return millis();
|
2014-06-16 05:33:14 +00:00
|
|
|
}
|
|
|
|
|
2015-10-30 23:03:58 +00:00
|
|
|
void mp_hal_delay_ms(mp_uint_t ms) {
|
2015-10-29 17:12:13 +00:00
|
|
|
delay(ms);
|
2014-06-16 05:33:14 +00:00
|
|
|
}
|
2014-11-27 16:58:31 +00:00
|
|
|
|
|
|
|
void mp_hal_set_interrupt_char(int c) {
|
|
|
|
// The teensy 3.1 usb stack doesn't currently have the notion of generating
|
|
|
|
// an exception when a certain character is received. That just means that
|
|
|
|
// you can't press Control-C and get your python script to stop.
|
|
|
|
}
|
2015-02-13 15:04:53 +00:00
|
|
|
|
|
|
|
int mp_hal_stdin_rx_chr(void) {
|
|
|
|
for (;;) {
|
|
|
|
byte c;
|
|
|
|
if (usb_vcp_recv_byte(&c) != 0) {
|
|
|
|
return c;
|
|
|
|
} else if (MP_STATE_PORT(pyb_stdio_uart) != NULL && uart_rx_any(MP_STATE_PORT(pyb_stdio_uart))) {
|
|
|
|
return uart_rx_char(MP_STATE_PORT(pyb_stdio_uart));
|
|
|
|
}
|
|
|
|
__WFI();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void mp_hal_stdout_tx_str(const char *str) {
|
|
|
|
mp_hal_stdout_tx_strn(str, strlen(str));
|
|
|
|
}
|
|
|
|
|
2015-10-30 23:03:58 +00:00
|
|
|
void mp_hal_stdout_tx_strn(const char *str, size_t len) {
|
2015-02-13 15:04:53 +00:00
|
|
|
if (MP_STATE_PORT(pyb_stdio_uart) != NULL) {
|
|
|
|
uart_tx_strn(MP_STATE_PORT(pyb_stdio_uart), str, len);
|
|
|
|
}
|
|
|
|
if (usb_vcp_is_enabled()) {
|
|
|
|
usb_vcp_send_strn(str, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-30 23:03:58 +00:00
|
|
|
void mp_hal_stdout_tx_strn_cooked(const char *str, size_t len) {
|
2015-02-13 15:04:53 +00:00
|
|
|
// send stdout to UART and USB CDC VCP
|
|
|
|
if (MP_STATE_PORT(pyb_stdio_uart) != NULL) {
|
|
|
|
uart_tx_strn_cooked(MP_STATE_PORT(pyb_stdio_uart), str, len);
|
|
|
|
}
|
|
|
|
if (usb_vcp_is_enabled()) {
|
|
|
|
usb_vcp_send_strn_cooked(str, len);
|
|
|
|
}
|
|
|
|
}
|
2015-08-02 23:05:16 +00:00
|
|
|
|
|
|
|
void mp_hal_gpio_clock_enable(GPIO_TypeDef *gpio) {
|
|
|
|
}
|