initial commit

This commit is contained in:
jhChun
2026-04-08 16:58:54 +09:00
commit 82e33d8bf9
2578 changed files with 1590432 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*******************************************************************************
* @file uart_handler.h
* @brief UART Communication Handler
* @author Charles KWON <charleskwon@medithings.co.kr>
* @date 2025-01-30
* @copyright (c) 2025 Medithings Inc. All rights reserved.
*
* @details UART initialization and event handling for serial communication.
******************************************************************************/
#ifndef UART_HANDLER_H
#define UART_HANDLER_H
#include <stdint.h>
#include <stdbool.h>
/*==============================================================================
* CONSTANTS
*============================================================================*/
#define UART_TX_BUF_SIZE 16384
#define UART_RX_BUF_SIZE 512
/*==============================================================================
* FUNCTION PROTOTYPES
*============================================================================*/
/**
* @brief Initialize UART module
*/
void uart_handler_init(void);
#endif /* UART_HANDLER_H */