From 6312b53a86b8329029cf56cacdb51216e395a81c Mon Sep 17 00:00:00 2001 From: dylan <497357846@qq.com> Date: Tue, 18 Aug 2020 08:14:11 +0800 Subject: [PATCH 1/2] first add 4G file. --- 4G/4g.c | 5 +++++ 4G/4g.h | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 4G/4g.c create mode 100644 4G/4g.h diff --git a/4G/4g.c b/4G/4g.c new file mode 100644 index 0000000..5bfc673 --- /dev/null +++ b/4G/4g.c @@ -0,0 +1,5 @@ +#include "4g.h" +void sch_4g_init(void) +{ + uint8_t status = get_4g_status(); +} \ No newline at end of file diff --git a/4G/4g.h b/4G/4g.h new file mode 100644 index 0000000..0e095f4 --- /dev/null +++ b/4G/4g.h @@ -0,0 +1,3 @@ +#include + +void sch_4g_init(void); \ No newline at end of file From 4a0005b8c8349ef68532ceb99ea37c10f458b253 Mon Sep 17 00:00:00 2001 From: dylan <497357846@qq.com> Date: Tue, 18 Aug 2020 08:30:19 +0800 Subject: [PATCH 2/2] 4g.c add sch_4g_set_parameter() --- 4G/4g.c | 5 +++++ 4G/4g.h | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/4G/4g.c b/4G/4g.c index 5bfc673..1f384a4 100644 --- a/4G/4g.c +++ b/4G/4g.c @@ -2,4 +2,9 @@ void sch_4g_init(void) { uint8_t status = get_4g_status(); +} + +void sch_4g_set_parameter(char * param) +{ + } \ No newline at end of file diff --git a/4G/4g.h b/4G/4g.h index 0e095f4..8cc22c9 100644 --- a/4G/4g.h +++ b/4G/4g.h @@ -1,3 +1,4 @@ #include -void sch_4g_init(void); \ No newline at end of file +void sch_4g_init(void); +void sch_4g_set_parameter(char * param); \ No newline at end of file