WXK
2025-03-14 63bf8ea65ca11349d5fae93580f91a87d3633dba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
/*******************************************************************************
 * File Name         : Uart.c
 * Description       :
 * Created on        : 2018Äê4ÔÂ24ÈÕ
 * Author            : ¶Å¼ü
 *******************************************************************************/
 
/*******************************************************************************
 *                              Include Files                                  *
 *******************************************************************************/
#include "string.h"
#ifdef _USE_OS_
#include "cmsis_os.h"
#endif
#include <stdio.h>
#include "HIDO_Util.h"
#include "HIDO_VLQueue.h"
#include "HIDO_ArraryQueue.h"
#include "HIDO_Lock.h"
#include "HIDO_ATLite.h"
 
#include "UART.h"
 
/*******************************************************************************
 *                                  Macro                                      *
 *******************************************************************************/
 
/*******************************************************************************
 *                             Type Definition                                 *
 *******************************************************************************/
typedef struct
{
#ifdef _USE_OS_
    osMutexId m_mutexLock;
#endif
    E_UartID m_eUartID;
    enum UART_DEV_T m_eUartPort;
 
    E_UartTxMode m_eTxMode;
    E_UartRxMode m_eRxMode;
 
    HIDO_UINT8 *m_pu8RxBuf;
    HIDO_UINT32 m_u32RxBufSize;
    HIDO_UINT8 *m_pu8RxLastPos;
    HIDO_UINT8 *m_pu8RxBufEnd;
    HIDO_ArraryQueueStruct m_stRxArraryQueue;
 
    HIDO_UINT8 *m_pu8TxBuf;
    HIDO_UINT32 m_u32TxBufSize;
    HIDO_UINT32 m_u32TxQueueMemberCnt;
    HIDO_VLQStruct m_stTxVLQueue;
 
    HIDO_UINT8 m_u8RxValue;
    HIDO_UINT32 m_u32Flag;
    FN_RxISR m_fnRxISR;
} ST_UartInfo;
 
/*******************************************************************************
 *                             Local Variable                                  *
 *******************************************************************************/
static ST_UartInfo l_astUartInfo[UART_ID_LAST];
 
/*******************************************************************************
 *                        Local Function Declaration                           *
 *******************************************************************************/
static void uart_receive_callback(void *dev, uint32_t err_code);
 
const static struct baud_map
{
    enum UART_BAUD_T baud;
    HIDO_UINT32 u32Baud;
} baud_map[] = 
{
    {BAUD_1200,    1200},
    {BAUD_2400,    2400},
    {BAUD_4800,    4800},
    {BAUD_9600,    9600},
    {BAUD_19200,   19200},
    {BAUD_38400,   38400},
    {BAUD_57600,   57600},
    {BAUD_115200,  115200},
    {BAUD_230400,  230400},
    {BAUD_460800,  460800},
    {BAUD_921600,  921600},
    {BAUD_1843200, 1843200},
    {BAUD_1000000, 1000000},
    {BAUD_2000000, 2000000},
};
 
/*******************************************************************************
 *                             Local Function                                  *
 *******************************************************************************/
static enum UART_BAUD_T get_baud(HIDO_UINT32 u32Baud)
{
    for(HIDO_UINT32 i = 0; i < HIDO_ARRARY_COUNT(baud_map); i++)
    {
        if(u32Baud == baud_map[i].u32Baud)
        {
            return baud_map[i].baud;
        }
    }
    
    return BAUD_115200;
}
 
/*******************************************************************************
 *                             Global Function                                 *
 *******************************************************************************/
 
/*******************************************************************************
 * Function Name     : 
 * Description       : 
 * Input             : 
 * Output            : 
 * Return            : 
 * Author            : ¶Å¼ü
 * Modified Date:    : 2018Äê4ÔÂ24ÈÕ
 *******************************************************************************/
HIDO_INT32 Uart_Register(E_UartID _eUartID, enum UART_DEV_T _ePort)
{
    /* ³õʼ»¯²ÎÊý */
    HIDO_UtilBzero(&l_astUartInfo[_eUartID], sizeof(ST_UartInfo));
    
    l_astUartInfo[_eUartID].m_eUartPort = _ePort;
 
    return HIDO_OK;
}
 
/*******************************************************************************
 * Function Name     :
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : ¶Å¼ü
 * Modified Date:    : 2018Äê4ÔÂ24ÈÕ
 *******************************************************************************/
HIDO_INT32 Uart_Init(E_UartID _eUartID, ST_UartInit *_pstInit)
{
    if((HIDO_NULL == _pstInit) || (_eUartID >= UART_ID_LAST))
    {
        return HIDO_ERR;
    }
 
#ifdef _USE_OS_
    l_astUartInfo[_eUartID].m_mutexLock =  osMutexCreate(HIDO_NULL);
#endif
    
    struct UART_CFG_T uart_cfg =
    {
        .parity = UART_PARITY_NONE,
        .stop = UART_STOP_BITS_1,
        .data = UART_DATA_BITS_8,
        .flow = UART_FLOW_CONTROL_NONE,
        .rx_level = UART_RXFIFO_CHAR_1,
        .tx_level = UART_TXFIFO_EMPTY,
        .baud = get_baud(_pstInit->m_u32BaudRate),
        .dma_en = true,
        .int_rx = false,
        .int_tx = false,
    };
 
    l_astUartInfo[_eUartID].m_eUartID = _eUartID;
    l_astUartInfo[_eUartID].m_eTxMode = _pstInit->m_eTxMode;
    l_astUartInfo[_eUartID].m_eRxMode = _pstInit->m_eRxMode;
 
    l_astUartInfo[_eUartID].m_pu8RxBuf = _pstInit->m_pu8RxBuf;
    l_astUartInfo[_eUartID].m_u32RxBufSize = _pstInit->m_u32RxBufSize;
    if(UART_RX_MODE_DMA == _pstInit->m_eRxMode)
    {
        l_astUartInfo[_eUartID].m_pu8RxLastPos= l_astUartInfo[_eUartID].m_pu8RxBuf;
        l_astUartInfo[_eUartID].m_pu8RxBufEnd = l_astUartInfo[_eUartID].m_pu8RxBuf + l_astUartInfo[_eUartID].m_u32RxBufSize - 1;
    }
    else if(UART_RX_MODE_INT == _pstInit->m_eRxMode)
    {
        HIDO_ArraryQueueInit(
                &l_astUartInfo[_eUartID].m_stRxArraryQueue,
                _pstInit->m_pu8RxBuf,
                _pstInit->m_u32RxBufSize,
                sizeof(HIDO_UINT8));
    }
 
    l_astUartInfo[_eUartID].m_pu8TxBuf = _pstInit->m_pu8TxBuf;
    l_astUartInfo[_eUartID].m_u32TxBufSize = _pstInit->m_u32TxBufSize;
    l_astUartInfo[_eUartID].m_fnRxISR = _pstInit->m_fnRxISR;
    l_astUartInfo[_eUartID].m_u32TxQueueMemberCnt = _pstInit->m_u32TxQueueMemberCnt;
    
    uart_open(l_astUartInfo[_eUartID].m_eUartPort, &uart_cfg);
 
    if((UART_TX_MODE_DMA == _pstInit->m_eTxMode) || (UART_TX_MODE_INT == _pstInit->m_eTxMode))
    {
        HIDO_VLQInit(
                &(l_astUartInfo[_eUartID].m_stTxVLQueue),
                _pstInit->m_pu8TxBuf,
                _pstInit->m_u32TxBufSize,
                _pstInit->m_u32TxQueueMemberCnt);
    }
 
    if (UART_RX_MODE_INT == _pstInit->m_eRxMode)
    {
        uart_receive(l_astUartInfo[_eUartID].m_eUartPort, &l_astUartInfo[_eUartID].m_u8RxValue, 1, uart_receive_callback);
    }
 
    return HIDO_OK;
}
 
 
/*******************************************************************************
 * Function Name     :
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : ¶Å¼ü
 * Modified Date:    : 2018Äê4ÔÂ24ÈÕ
 *******************************************************************************/
HIDO_INT32 Uart_ReInit(E_UartID _eUartID)
{
    if(UART_RX_MODE_DMA == l_astUartInfo[_eUartID].m_eRxMode)
    {
        l_astUartInfo[_eUartID].m_pu8RxLastPos= l_astUartInfo[_eUartID].m_pu8RxBuf;
        l_astUartInfo[_eUartID].m_pu8RxBufEnd = l_astUartInfo[_eUartID].m_pu8RxBuf + l_astUartInfo[_eUartID].m_u32RxBufSize - 1;
    }
    else if(UART_RX_MODE_INT ==  l_astUartInfo[_eUartID].m_eRxMode)
    {
        HIDO_ArraryQueueInit(
                &l_astUartInfo[_eUartID].m_stRxArraryQueue,
                l_astUartInfo[_eUartID].m_pu8RxBuf,
                l_astUartInfo[_eUartID].m_u32RxBufSize,
                sizeof(HIDO_UINT8));
    }
 
    if((UART_TX_MODE_DMA == l_astUartInfo[_eUartID].m_eTxMode) || (UART_TX_MODE_INT == l_astUartInfo[_eUartID].m_eTxMode))
    {
        HIDO_VLQInit(
                &(l_astUartInfo[_eUartID].m_stTxVLQueue),
                l_astUartInfo[_eUartID].m_pu8TxBuf,
                l_astUartInfo[_eUartID].m_u32TxBufSize,
                l_astUartInfo[_eUartID].m_u32TxQueueMemberCnt);
    }
 
    uart_receive(l_astUartInfo[_eUartID].m_eUartPort, &l_astUartInfo[_eUartID].m_u8RxValue, 1, uart_receive_callback);
 
    return HIDO_OK;
}
 
/*******************************************************************************
 * Function Name     :
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : ¶Å¼ü
 * Modified Date:    : 2018Äê4ÔÂ24ÈÕ
 *******************************************************************************/
HIDO_INT32 Uart_ReConfigBaudRate(E_UartID _eUartID, HIDO_UINT32 _u32BaudRate)
{
    uart_close(l_astUartInfo[_eUartID].m_eUartPort);
 
    struct UART_CFG_T uart_cfg =
    {
        .parity = UART_PARITY_NONE,
        .stop = UART_STOP_BITS_1,
        .data = UART_DATA_BITS_8,
        .flow = UART_FLOW_CONTROL_NONE,
        .rx_level = UART_RXFIFO_CHAR_1,
        .tx_level = UART_TXFIFO_EMPTY,
        .baud = get_baud(_u32BaudRate),
        .dma_en = false,
        .int_rx = true,
        .int_tx = false,
    };
    
    uart_open(l_astUartInfo[_eUartID].m_eUartPort, &uart_cfg);
 
    return HIDO_OK;
}
 
/*******************************************************************************
 * Function Name     :
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : ¶Å¼ü
 * Modified Date:    : 2018Äê4ÔÂ24ÈÕ
 *******************************************************************************/
static void uart_send_callback(void *dev, uint32_t err_code)
{
    E_UartID eUartID = (E_UartID) 0;
 
    for (eUartID = (E_UartID) 0; eUartID < UART_ID_LAST; eUartID++)
    {
        if (l_astUartInfo[eUartID].m_eUartPort == *(enum UART_DEV_T *)dev)
        {
            if(UART_TX_MODE_DMA == l_astUartInfo[eUartID].m_eTxMode)
            {
                HIDO_VLQMemberStruct *pstMember = HIDO_NULL;
 
                pstMember = HIDO_VLQGetDequeueMember(&(l_astUartInfo[eUartID].m_stTxVLQueue));
                HIDO_VLQDequeue(&(l_astUartInfo[eUartID].m_stTxVLQueue), pstMember);
 
                pstMember = HIDO_VLQGetDequeueMember(&(l_astUartInfo[eUartID].m_stTxVLQueue));
                if (pstMember)
                {
                    uart_send(l_astUartInfo[eUartID].m_eUartPort, pstMember->m_pDataAddr, pstMember->m_u32DataLen, uart_send_callback);
                }
            }
            else if(UART_TX_MODE_INT == l_astUartInfo[eUartID].m_eTxMode)
            {
                HIDO_VLQMemberStruct *pstMember = HIDO_NULL;
 
                pstMember = HIDO_VLQGetDequeueMember(&(l_astUartInfo[eUartID].m_stTxVLQueue));
                HIDO_VLQDequeue(&(l_astUartInfo[eUartID].m_stTxVLQueue), pstMember);
 
                pstMember = HIDO_VLQGetDequeueMember(&(l_astUartInfo[eUartID].m_stTxVLQueue));
                if (pstMember)
                {
                    uart_send(l_astUartInfo[eUartID].m_eUartPort, pstMember->m_pDataAddr, pstMember->m_u32DataLen, uart_send_callback);
                }
            }
 
            break;
        }
    }
}
 
 
/*******************************************************************************
 * Function Name     : Uart_RxOverFromISR
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : ¶Å¼ü
 * Modified Date:    : 2018Äê4ÔÂ24ÈÕ
 *******************************************************************************/
static void uart_receive_callback(void *dev, uint32_t err_code)
{
    E_UartID eUartID = UART_ID_4G;
    
    HIDO_UINT8 u8RecvByte = l_astUartInfo[eUartID].m_u8RxValue;
 
    HIDO_ArraryQueueIn(&l_astUartInfo[eUartID].m_stRxArraryQueue, &u8RecvByte);
 
    /* Æô¶¯INT½ÓÊÕ */
    uart_receive(l_astUartInfo[eUartID].m_eUartPort, &l_astUartInfo[eUartID].m_u8RxValue, 1, uart_receive_callback);
}
 
/*******************************************************************************
 * Function Name     :
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : ¶Å¼ü
 * Modified Date:    : 2018Äê4ÔÂ24ÈÕ
 *******************************************************************************/
HIDO_INT32 Uart_GetChar(E_UartID _eUartID, HIDO_UINT8 *_pu8Char)
{
    HIDO_INT32 i32Result = HIDO_ERR;
 
    if (HIDO_NULL == _pu8Char || _eUartID >= UART_ID_LAST)
    {
        return HIDO_ERR;
    }
 
#ifdef _USE_OS_
    osMutexWait(l_astUartInfo[_eUartID].m_mutexLock, osWaitForever);
#endif
 
    if (UART_RX_MODE_INT == l_astUartInfo[_eUartID].m_eRxMode)
    {
        if (HIDO_ArraryQueueOut(&l_astUartInfo[_eUartID].m_stRxArraryQueue, _pu8Char) == HIDO_OK)
        {
            i32Result = HIDO_OK;
        }
    }
 
#ifdef _USE_OS_
    osMutexRelease(l_astUartInfo[_eUartID].m_mutexLock);
#endif
 
    return i32Result;
}
 
/*******************************************************************************
 * Function Name     :
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : ¶Å¼ü
 * Modified Date:    : 2018Äê4ÔÂ24ÈÕ
 *******************************************************************************/
HIDO_INT32 Uart_Send(E_UartID _eUartID, HIDO_UINT8 *_pu8Data, HIDO_UINT32 _u32Len)
{
    HIDO_INT32 i32Result = HIDO_OK;
 
    if (HIDO_NULL == _pu8Data || 0 == _u32Len || _eUartID >= UART_ID_LAST)
    {
        return HIDO_ERR;
    }
 
#ifdef _USE_OS_
    osMutexWait(l_astUartInfo[_eUartID].m_mutexLock, osWaitForever);
#endif
 
    if (UART_TX_MODE_DMA == l_astUartInfo[_eUartID].m_eTxMode)
    {
        HIDO_VLQMemberStruct *pstMember = HIDO_NULL;
 
        HIDO_Lock();
        pstMember = HIDO_VLQGetEnqueueMember(&(l_astUartInfo[_eUartID].m_stTxVLQueue), _u32Len);
 
        if (HIDO_NULL == pstMember)
        {
            HIDO_UnLock();
            i32Result = HIDO_ERR;
        }
        else
        {
            HIDO_VLQEnqueue(&(l_astUartInfo[_eUartID].m_stTxVLQueue), pstMember);
            memcpy(pstMember->m_pDataAddr, _pu8Data, _u32Len);
            pstMember = HIDO_VLQGetDequeueMember(&(l_astUartInfo[_eUartID].m_stTxVLQueue));
            HIDO_UnLock();
            
            uart_send(l_astUartInfo[_eUartID].m_eUartPort, pstMember->m_pDataAddr, pstMember->m_u32DataLen, uart_send_callback);
        }
    }
    else if (UART_TX_MODE_INT == l_astUartInfo[_eUartID].m_eTxMode)
    {
        HIDO_VLQMemberStruct *pstMember = HIDO_NULL;
 
        HIDO_Lock();
        pstMember = HIDO_VLQGetEnqueueMember(&(l_astUartInfo[_eUartID].m_stTxVLQueue), _u32Len);
 
        if (HIDO_NULL == pstMember)
        {
            HIDO_UnLock();
            i32Result = HIDO_ERR;
        }
        else
        {
            HIDO_VLQEnqueue(&(l_astUartInfo[_eUartID].m_stTxVLQueue), pstMember);
            memcpy(pstMember->m_pDataAddr, _pu8Data, _u32Len);
            pstMember = HIDO_VLQGetDequeueMember(&(l_astUartInfo[_eUartID].m_stTxVLQueue));
            HIDO_UnLock();
 
            uart_send(l_astUartInfo[_eUartID].m_eUartPort, pstMember->m_pDataAddr, pstMember->m_u32DataLen, uart_send_callback);
        }
    }
    else if (UART_TX_MODE_POLL == l_astUartInfo[_eUartID].m_eTxMode)
    {
        uart_send(l_astUartInfo[_eUartID].m_eUartPort, _pu8Data, _u32Len, NULL);
    }
 
#ifdef _USE_OS_
    osMutexRelease(l_astUartInfo[_eUartID].m_mutexLock);
#endif
 
    return i32Result;
}
HIDO_VOID HIDO_Lock(void)
{
    int_lock();
}
HIDO_VOID HIDO_UnLock(void)
{
    uint32_t lock = int_lock();
    int_unlock(lock);
}