From 2e0c6b604f51f4d4504e0339c028c91324a8a105 Mon Sep 17 00:00:00 2001 From: Satoshi Ikari Date: Thu, 12 Dec 2024 02:15:42 +0900 Subject: [PATCH] Add s2e namespace --- src/src_user/IfWrapper/Sils/uart_sils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/src_user/IfWrapper/Sils/uart_sils.h b/src/src_user/IfWrapper/Sils/uart_sils.h index 34de1aff..0958235b 100644 --- a/src/src_user/IfWrapper/Sils/uart_sils.h +++ b/src/src_user/IfWrapper/Sils/uart_sils.h @@ -7,8 +7,8 @@ #define UART_SILS_H_ -int OBC_C2A_SendFromObc(int port_id, unsigned char* buffer, int offset, int count); -int OBC_C2A_ReceivedByObc(int port_id, unsigned char* buffer, int offset, int count); +int s2e::components::OBC_C2A_SendFromObc(int port_id, unsigned char* buffer, int offset, int count); +int s2e::components::OBC_C2A_ReceivedByObc(int port_id, unsigned char* buffer, int offset, int count); int UART_init(void* my_uart_v); int UART_rx(void* my_uart_v, void* data_v, int buffer_size);