stm32f0: New target STM32F0 added.

Signed-off-by: Eugene Krashtan <Eugene.Krashtan@opensynergy.com>
This commit is contained in:
Eugene Krashtan
2019-03-11 12:47:58 +02:00
committed by Kevin O'Connor
parent 74c6a85cde
commit b822f38923
16 changed files with 1668 additions and 0 deletions

18
src/stm32f0/log.h Normal file
View File

@@ -0,0 +1,18 @@
/*
* log.h
*
* Created on: Jan 17, 2019
* Author: eug
*/
#ifndef CORE_INC_LOG_H_
#define CORE_INC_LOG_H_
void LogInit(void);
void lprint(char *msg);
void lnprint(char *msg, size_t len);
#endif /* CORE_INC_LOG_H_ */