2014-01-09 06:36:13 -05:00
|
|
|
#include <stdio.h>
|
2013-10-26 13:01:48 -04:00
|
|
|
#include <stm32f4xx_rcc.h>
|
|
|
|
#include <stm32f4xx_gpio.h>
|
|
|
|
#include <stm32f4xx_usart.h>
|
|
|
|
|
|
|
|
#include "misc.h"
|
2014-01-09 06:36:13 -05:00
|
|
|
#include "mpconfig.h"
|
|
|
|
#include "obj.h"
|
2013-10-26 13:01:48 -04:00
|
|
|
#include "usart.h"
|
|
|
|
|
2014-01-12 19:20:06 -05:00
|
|
|
pyb_usart_t pyb_usart_global_debug = PYB_USART_NONE;
|
2013-10-26 13:01:48 -04:00
|
|
|
|
2014-01-09 06:36:13 -05:00
|
|
|
static USART_TypeDef *usart_get_base(pyb_usart_t usart_id) {
|
|
|
|
USART_TypeDef *USARTx=NULL;
|
|
|
|
|
|
|
|
switch (usart_id) {
|
2014-01-12 19:20:06 -05:00
|
|
|
case PYB_USART_NONE:
|
|
|
|
break;
|
2014-01-09 06:36:13 -05:00
|
|
|
case PYB_USART_1:
|
|
|
|
USARTx = USART1;
|
|
|
|
break;
|
|
|
|
case PYB_USART_2:
|
|
|
|
USARTx = USART2;
|
|
|
|
break;
|
|
|
|
case PYB_USART_3:
|
|
|
|
USARTx = USART3;
|
|
|
|
break;
|
|
|
|
case PYB_USART_6:
|
|
|
|
USARTx = USART6;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return USARTx;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usart_init(pyb_usart_t usart_id, uint32_t baudrate) {
|
|
|
|
USART_TypeDef *USARTx=NULL;
|
|
|
|
|
|
|
|
uint32_t GPIO_Pin=0;
|
|
|
|
uint8_t GPIO_AF_USARTx=0;
|
|
|
|
GPIO_TypeDef* GPIO_Port=NULL;
|
|
|
|
uint16_t GPIO_PinSource_TX=0;
|
|
|
|
uint16_t GPIO_PinSource_RX=0;
|
|
|
|
|
|
|
|
uint32_t RCC_APBxPeriph=0;
|
|
|
|
void (*RCC_APBxPeriphClockCmd)(uint32_t, FunctionalState)=NULL;
|
|
|
|
|
|
|
|
switch (usart_id) {
|
2014-01-12 19:20:06 -05:00
|
|
|
case PYB_USART_NONE:
|
|
|
|
return;
|
|
|
|
|
2014-01-09 06:36:13 -05:00
|
|
|
case PYB_USART_1:
|
|
|
|
USARTx = USART1;
|
|
|
|
|
|
|
|
GPIO_Port = GPIOA;
|
|
|
|
GPIO_AF_USARTx = GPIO_AF_USART1;
|
|
|
|
GPIO_Pin = GPIO_Pin_9 | GPIO_Pin_10;
|
|
|
|
GPIO_PinSource_TX = GPIO_PinSource9;
|
|
|
|
GPIO_PinSource_RX = GPIO_PinSource10;
|
|
|
|
|
|
|
|
RCC_APBxPeriph = RCC_APB2Periph_USART1;
|
|
|
|
RCC_APBxPeriphClockCmd =RCC_APB2PeriphClockCmd;
|
|
|
|
break;
|
|
|
|
case PYB_USART_2:
|
|
|
|
USARTx = USART2;
|
|
|
|
|
|
|
|
GPIO_Port = GPIOD;
|
|
|
|
GPIO_AF_USARTx = GPIO_AF_USART2;
|
|
|
|
GPIO_Pin = GPIO_Pin_5 | GPIO_Pin_6;
|
|
|
|
GPIO_PinSource_TX = GPIO_PinSource5;
|
|
|
|
GPIO_PinSource_RX = GPIO_PinSource6;
|
|
|
|
|
|
|
|
RCC_APBxPeriph = RCC_APB1Periph_USART2;
|
|
|
|
RCC_APBxPeriphClockCmd =RCC_APB1PeriphClockCmd;
|
|
|
|
break;
|
|
|
|
case PYB_USART_3:
|
|
|
|
USARTx = USART3;
|
|
|
|
|
|
|
|
GPIO_Port = GPIOD;
|
|
|
|
GPIO_AF_USARTx = GPIO_AF_USART3;
|
|
|
|
GPIO_Pin = GPIO_Pin_8 | GPIO_Pin_9;
|
|
|
|
GPIO_PinSource_TX = GPIO_PinSource8;
|
|
|
|
GPIO_PinSource_RX = GPIO_PinSource9;
|
|
|
|
|
|
|
|
RCC_APBxPeriph = RCC_APB1Periph_USART3;
|
|
|
|
RCC_APBxPeriphClockCmd =RCC_APB1PeriphClockCmd;
|
|
|
|
break;
|
|
|
|
case PYB_USART_6:
|
|
|
|
USARTx = USART6;
|
|
|
|
|
|
|
|
GPIO_Port = GPIOC;
|
|
|
|
GPIO_AF_USARTx = GPIO_AF_USART6;
|
|
|
|
GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7;
|
|
|
|
GPIO_PinSource_TX = GPIO_PinSource6;
|
|
|
|
GPIO_PinSource_RX = GPIO_PinSource7;
|
|
|
|
|
|
|
|
RCC_APBxPeriph = RCC_APB2Periph_USART6;
|
|
|
|
RCC_APBxPeriphClockCmd =RCC_APB2PeriphClockCmd;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize USARTx */
|
|
|
|
RCC_APBxPeriphClockCmd(RCC_APBxPeriph, ENABLE);
|
|
|
|
|
|
|
|
GPIO_PinAFConfig(GPIO_Port, GPIO_PinSource_TX, GPIO_AF_USARTx);
|
|
|
|
GPIO_PinAFConfig(GPIO_Port, GPIO_PinSource_RX, GPIO_AF_USARTx);
|
2013-10-26 13:01:48 -04:00
|
|
|
|
|
|
|
GPIO_InitTypeDef GPIO_InitStructure;
|
2014-01-09 06:36:13 -05:00
|
|
|
GPIO_InitStructure.GPIO_Pin = GPIO_Pin;
|
2013-10-26 13:01:48 -04:00
|
|
|
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_25MHz;
|
|
|
|
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
|
|
|
|
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
|
|
|
|
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
|
2014-01-09 06:36:13 -05:00
|
|
|
GPIO_Init(GPIO_Port, &GPIO_InitStructure);
|
2013-10-26 13:01:48 -04:00
|
|
|
|
|
|
|
USART_InitTypeDef USART_InitStructure;
|
2014-01-09 06:36:13 -05:00
|
|
|
USART_InitStructure.USART_BaudRate = baudrate;
|
2013-10-26 13:01:48 -04:00
|
|
|
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
|
|
|
|
USART_InitStructure.USART_StopBits = USART_StopBits_1;
|
|
|
|
USART_InitStructure.USART_Parity = USART_Parity_No;
|
|
|
|
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
|
|
|
|
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
|
2014-01-09 06:36:13 -05:00
|
|
|
USART_Init(USARTx, &USART_InitStructure);
|
2013-10-26 13:01:48 -04:00
|
|
|
|
2014-01-09 06:36:13 -05:00
|
|
|
USART_Cmd(USARTx, ENABLE);
|
2013-10-26 13:01:48 -04:00
|
|
|
}
|
|
|
|
|
2014-01-12 19:20:06 -05:00
|
|
|
bool usart_rx_any(pyb_usart_t usart_id) {
|
|
|
|
USART_TypeDef *USARTx = usart_get_base(usart_id);
|
|
|
|
return USART_GetFlagStatus(USARTx, USART_FLAG_RXNE) == SET;
|
2013-10-26 13:01:48 -04:00
|
|
|
}
|
|
|
|
|
2014-01-09 06:36:13 -05:00
|
|
|
int usart_rx_char(pyb_usart_t usart_id) {
|
2014-01-12 19:20:06 -05:00
|
|
|
USART_TypeDef *USARTx = usart_get_base(usart_id);
|
2014-01-09 06:36:13 -05:00
|
|
|
return USART_ReceiveData(USARTx);
|
2013-10-26 13:01:48 -04:00
|
|
|
}
|
|
|
|
|
2014-01-09 06:36:13 -05:00
|
|
|
void usart_tx_char(pyb_usart_t usart_id, int c) {
|
|
|
|
USART_TypeDef *USARTx = usart_get_base(usart_id);
|
|
|
|
// wait until the end of any previous transmission
|
|
|
|
uint32_t timeout = 100000;
|
|
|
|
while (USART_GetFlagStatus(USARTx, USART_FLAG_TC) == RESET && --timeout > 0) {
|
2013-10-26 13:01:48 -04:00
|
|
|
}
|
2014-01-09 06:36:13 -05:00
|
|
|
USART_SendData(USARTx, c);
|
2013-10-26 13:01:48 -04:00
|
|
|
}
|
|
|
|
|
2014-01-09 06:36:13 -05:00
|
|
|
void usart_tx_str(pyb_usart_t usart_id, const char *str) {
|
2013-10-26 13:01:48 -04:00
|
|
|
for (; *str; str++) {
|
2014-01-09 06:36:13 -05:00
|
|
|
usart_tx_char(usart_id, *str);
|
2013-10-26 13:01:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-09 06:36:13 -05:00
|
|
|
void usart_tx_strn_cooked(pyb_usart_t usart_id, const char *str, int len) {
|
2013-10-26 13:01:48 -04:00
|
|
|
for (const char *top = str + len; str < top; str++) {
|
|
|
|
if (*str == '\n') {
|
2014-01-09 06:36:13 -05:00
|
|
|
usart_tx_char(usart_id, '\r');
|
2013-10-26 13:01:48 -04:00
|
|
|
}
|
2014-01-09 06:36:13 -05:00
|
|
|
usart_tx_char(usart_id, *str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* Micro Python bindings */
|
|
|
|
|
|
|
|
typedef struct _pyb_usart_obj_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
pyb_usart_t usart_id;
|
|
|
|
bool is_enabled;
|
|
|
|
} pyb_usart_obj_t;
|
|
|
|
|
2014-01-09 17:04:45 -05:00
|
|
|
static mp_obj_t usart_obj_status(mp_obj_t self_in) {
|
2014-01-12 19:20:06 -05:00
|
|
|
pyb_usart_obj_t *self = self_in;
|
|
|
|
if (usart_rx_any(self->usart_id)) {
|
2014-01-09 17:04:45 -05:00
|
|
|
return mp_const_true;
|
|
|
|
} else {
|
|
|
|
return mp_const_false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-09 06:36:13 -05:00
|
|
|
static mp_obj_t usart_obj_rx_char(mp_obj_t self_in) {
|
|
|
|
mp_obj_t ret = mp_const_none;
|
|
|
|
pyb_usart_obj_t *self = self_in;
|
|
|
|
|
|
|
|
if (self->is_enabled) {
|
|
|
|
ret = mp_obj_new_int(usart_rx_char(self->usart_id));
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static mp_obj_t usart_obj_tx_char(mp_obj_t self_in, mp_obj_t c) {
|
|
|
|
pyb_usart_obj_t *self = self_in;
|
|
|
|
if (self->is_enabled) {
|
|
|
|
usart_tx_char(self->usart_id, mp_obj_get_int(c));
|
|
|
|
}
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
|
|
|
|
static mp_obj_t usart_obj_tx_str(mp_obj_t self_in, mp_obj_t s) {
|
|
|
|
pyb_usart_obj_t *self = self_in;
|
|
|
|
if (self->is_enabled) {
|
2014-01-10 04:19:34 -05:00
|
|
|
if (MP_OBJ_IS_TYPE(s, &str_type)) {
|
|
|
|
const char *str = qstr_str(mp_obj_get_qstr(s));
|
|
|
|
usart_tx_str(self->usart_id, str);
|
|
|
|
}
|
2013-10-26 13:01:48 -04:00
|
|
|
}
|
2014-01-09 06:36:13 -05:00
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
|
2014-01-15 18:02:53 -05:00
|
|
|
static void usart_obj_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) {
|
2014-01-09 06:36:13 -05:00
|
|
|
pyb_usart_obj_t *self = self_in;
|
|
|
|
print(env, "<Usart %lu>", self->usart_id);
|
|
|
|
}
|
|
|
|
|
2014-01-09 17:04:45 -05:00
|
|
|
static MP_DEFINE_CONST_FUN_OBJ_1(usart_obj_status_obj, usart_obj_status);
|
2014-01-09 06:36:13 -05:00
|
|
|
static MP_DEFINE_CONST_FUN_OBJ_1(usart_obj_rx_char_obj, usart_obj_rx_char);
|
|
|
|
static MP_DEFINE_CONST_FUN_OBJ_2(usart_obj_tx_char_obj, usart_obj_tx_char);
|
|
|
|
static MP_DEFINE_CONST_FUN_OBJ_2(usart_obj_tx_str_obj, usart_obj_tx_str);
|
|
|
|
|
|
|
|
static const mp_method_t usart_methods[] = {
|
2014-01-09 17:04:45 -05:00
|
|
|
{ "status", &usart_obj_status_obj },
|
2014-01-09 06:36:13 -05:00
|
|
|
{ "recv_chr", &usart_obj_rx_char_obj },
|
|
|
|
{ "send_chr", &usart_obj_tx_char_obj },
|
|
|
|
{ "send", &usart_obj_tx_str_obj },
|
|
|
|
{ NULL, NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const mp_obj_type_t usart_obj_type = {
|
|
|
|
{ &mp_const_type },
|
|
|
|
"Usart",
|
|
|
|
.print = usart_obj_print,
|
|
|
|
.methods = usart_methods,
|
|
|
|
};
|
|
|
|
|
|
|
|
mp_obj_t pyb_Usart(mp_obj_t usart_id, mp_obj_t baudrate) {
|
|
|
|
if (mp_obj_get_int(usart_id)>PYB_USART_MAX) {
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* init USART */
|
|
|
|
usart_init(mp_obj_get_int(usart_id), mp_obj_get_int(baudrate));
|
|
|
|
|
|
|
|
pyb_usart_obj_t *o = m_new_obj(pyb_usart_obj_t);
|
|
|
|
o->base.type = &usart_obj_type;
|
|
|
|
o->usart_id = mp_obj_get_int(usart_id);
|
|
|
|
o->is_enabled = true;
|
|
|
|
return o;
|
2013-10-26 13:01:48 -04:00
|
|
|
}
|