os-core/kernel/leos/log.h

34 lines
702 B
C
Raw Normal View History

2019-05-29 11:10:01 +02:00
/******************************************************************************
*
* Copyright (c) 2017-2019 by Löwenware Ltd
* Please, refer LICENSE file for legal information
*
******************************************************************************/
/**
2019-12-01 22:57:02 +01:00
* @file print.h
2019-05-29 11:10:01 +02:00
* @author Ilja Kartašov <ik@lowenware.com>
* @brief
*
* @see https://lowenware.com/
*/
2019-12-01 22:57:02 +01:00
#ifndef LOG_H_AE38CD54_2822_47A5_AFB1_E785739FA01D
#define LOG_H_AE38CD54_2822_47A5_AFB1_E785739FA01D
2019-05-29 11:10:01 +02:00
2019-12-01 22:57:02 +01:00
#include <core/types.h>
2019-05-29 11:10:01 +02:00
void
2020-01-15 10:56:04 +01:00
Log_init(void);
2019-05-29 11:10:01 +02:00
2020-01-15 10:56:04 +01:00
int
Log_putS(const char *string);
2020-01-15 10:56:04 +01:00
int
Log_putI(int64_t value, uint8_t base);
2020-01-15 10:56:04 +01:00
int
Log_putU(uint64_t value, uint8_t base);
2019-12-01 22:57:02 +01:00
#endif /* !LOG_H */