| /*============================================================================= |
| ** FileName: lynq_user.cpp |
| ** Desc: handle data from user |
| ** Author: Warren |
| ** Version: V1.0 |
| ** LastChange: 2021-09-28 |
| ** History: |
| **=============================================================================*/
|
| #include <stdio.h>
|
| #include "lynq_user.h"
|
| void* lynqGnss(int argc,char *argv[],int uToken)
|
| {
|
| printf("[lynqGnss] this is user space !!!\n");
|
| return 0;
|
| }
|
| void* lynqOther(int argc,char *argv[],int uToken)
|
| {
|
| printf("[lynqOther] this is user space !!!\n");
|
| return 0;
|
| }
|