2021-07-20 17:14:42 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-04-14 16:41:15 +00:00
|
|
|
typedef void (*FuriHalConsoleTxCallback)(const uint8_t* buffer, size_t size, void* context);
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_console_init();
|
2021-07-20 17:14:42 +00:00
|
|
|
|
2021-10-26 18:41:56 +00:00
|
|
|
void furi_hal_console_enable();
|
|
|
|
|
|
|
|
void furi_hal_console_disable();
|
|
|
|
|
2022-04-14 16:41:15 +00:00
|
|
|
void furi_hal_console_set_tx_callback(FuriHalConsoleTxCallback callback, void* context);
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_console_tx(const uint8_t* buffer, size_t buffer_size);
|
2021-07-20 17:14:42 +00:00
|
|
|
|
2021-09-21 09:48:08 +00:00
|
|
|
void furi_hal_console_tx_with_new_line(const uint8_t* buffer, size_t buffer_size);
|
|
|
|
|
2021-08-22 10:43:45 +00:00
|
|
|
/**
|
|
|
|
* Printf-like plain uart interface
|
|
|
|
* @warning Will not work in ISR context
|
|
|
|
* @param format
|
|
|
|
* @param ...
|
|
|
|
*/
|
2021-08-18 22:06:18 +00:00
|
|
|
void furi_hal_console_printf(const char format[], ...);
|
|
|
|
|
2021-08-22 10:43:45 +00:00
|
|
|
void furi_hal_console_puts(const char* data);
|
|
|
|
|
2021-07-20 17:14:42 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|