From 4c6b056b8467bb6513224527ff3120ef905de397 Mon Sep 17 00:00:00 2001 From: Paul Selkirk Date: Wed, 11 Nov 2015 14:46:28 -0500 Subject: Lots of cleanup. Clean up and simplify(?) Makefile. Add copyrights as needed. Add include guard to stm-fmc.h. Move MX_USART2_UART_Init back to stm-init.c for possible copyright reasons. Move libc, src, and include files to top level. --- include/stm-uart.h | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 include/stm-uart.h (limited to 'include/stm-uart.h') diff --git a/include/stm-uart.h b/include/stm-uart.h deleted file mode 100644 index c57afd5..0000000 --- a/include/stm-uart.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef __STM32_DEV_BRIDGE_UART_H -#define __STM32_DEV_BRIDGE_UART_H - -#include "stm32f4xx_hal.h" - -#define USART2_BAUD_RATE 115200 - -extern void MX_USART2_UART_Init(void); - -extern void uart_send_char(uint8_t ch); -extern void uart_send_string(char *s); -extern void uart_send_number(uint32_t num, uint8_t digits, uint8_t radix); -#define uart_send_binary(num, bits) uart_send_number(num, bits, 2) -#define uart_send_integer(num, digits) uart_send_number(num, digits, 10) -#define uart_send_hex(num, digits) uart_send_number(num, digits, 16) - -#endif /* __STM32_DEV_BRIDGE_UART_H */ -- cgit v1.2.3