2020-09-10 18:55:10 +00:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <stdio.h>
|
2020-08-26 18:32:22 +00:00
|
|
|
#include "furi.h"
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
extern UART_HandleTypeDef DEBUG_UART;
|
|
|
|
|
2020-09-01 10:34:23 +00:00
|
|
|
void handle_uart_write(const void* data, size_t size, void* ctx) {
|
2020-08-26 18:32:22 +00:00
|
|
|
HAL_UART_Transmit(&DEBUG_UART, (uint8_t*)data, (uint16_t)size, HAL_MAX_DELAY);
|
|
|
|
}
|
|
|
|
|
2020-09-10 18:55:10 +00:00
|
|
|
static ssize_t stdout_write(void *_cookie, const char *buf, size_t n) {
|
|
|
|
FuriRecordSubscriber *log = pvTaskGetThreadLocalStoragePointer(NULL, 0);
|
|
|
|
if (log == NULL) {
|
|
|
|
log = furi_open("tty", false, false, NULL, NULL, NULL);
|
2020-09-10 19:06:39 +00:00
|
|
|
if (log == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
2020-09-10 18:55:10 +00:00
|
|
|
vTaskSetThreadLocalStoragePointer(NULL, 0, log);
|
|
|
|
}
|
|
|
|
if (buf == 0) {
|
|
|
|
/*
|
|
|
|
* This means that we should flush internal buffers. Since we
|
|
|
|
* don't we just return. (Remember, "handle" == -1 means that all
|
|
|
|
* handles should be flushed.)
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
furi_write(log, buf, n);
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2020-08-26 18:32:22 +00:00
|
|
|
bool register_tty_uart() {
|
|
|
|
if(!furi_create("tty", NULL, 0)) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-09-10 18:55:10 +00:00
|
|
|
|
2020-09-01 10:34:23 +00:00
|
|
|
if(furi_open("tty", false, false, handle_uart_write, NULL, NULL) == NULL) {
|
2020-08-26 18:32:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-09-10 20:35:50 +00:00
|
|
|
FILE* fp = fopencookie(NULL, "w", (cookie_io_functions_t) {
|
2020-09-10 18:55:10 +00:00
|
|
|
.read = NULL,
|
|
|
|
.write = stdout_write,
|
|
|
|
.seek = NULL,
|
|
|
|
.close = NULL,
|
|
|
|
});
|
|
|
|
setvbuf(fp, NULL, _IONBF, 0);
|
|
|
|
stdout = fp;
|
|
|
|
|
2020-08-26 18:32:22 +00:00
|
|
|
return true;
|
2020-09-10 18:55:10 +00:00
|
|
|
}
|