CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/libraries/AP_ADSB/sagetech-sdk/charArray2Buf.c
Views: 1799
1
/**
2
* @copyright Copyright (c) 2021 Sagetech, Inc. All rights reserved.
3
*
4
* @file charArray2Buf.c
5
* @author Jacob.Garrison
6
*
7
* @date Mar 2, 2021
8
*
9
*/
10
11
#include "sgUtil.h"
12
#include <ctype.h>
13
14
/*
15
* Documented in the header file.
16
*/
17
void charArray2Buf(uint8_t *bufferPos, char arr[], uint8_t len)
18
{
19
for (uint8_t i = 0; i < len; ++i)
20
{
21
bufferPos[i] = toupper(arr[i]);
22
}
23
}
24
25