Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/electro/f103-dotmatrix/src/commit/d01e40e17405e469afc6aa3001e707c7fccc14da/project/com/iface_usart.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
demo of driving MAX2719 dot matrix displays with STM32F103 Bluepill
 
 
 
 
f103-dotmatrix/project/com/iface_usart.h

19 lines
565 B

#pragma once
#include "main.h"
#include "com_iface.h"
// Hardware USART.
/**
* @brief Init an USART interface. Caller must configure GPIO's & AF manually.
* @param USARTx device
* @param baud baud rate (ex.: 9600)
* @param rxbuf_len receive buffer size, must be > 0
* @param txbuf_len send buffer size. If 0, tx is blocking.
* @return the iface structure
*/
ComIface *usart_iface_init(USART_TypeDef* USARTx, uint32_t baud, size_t rxbuf_len, size_t txbuf_len);
///** Set baud rate */
//void usart_iface_set_baudrate(ComIface *iface, uint32_t baud);