Darien Figueroa / Mbed OS Final_Program

Dependencies:   USBDevice

Committer:
darienf
Date:
Sun May 02 23:09:04 2021 +0000
Revision:
5:bc128a16232f
Parent:
3:36de8b9e4b1a
This is the program that was last used, that has the working temperature and some comments

Who changed what in which revision?

UserRevisionLine numberNew contents of line
darienf 3:36de8b9e4b1a 1 /*******************************************************************************
darienf 3:36de8b9e4b1a 2 * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved.
darienf 3:36de8b9e4b1a 3 *
darienf 3:36de8b9e4b1a 4 * Permission is hereby granted, free of charge, to any person obtaining a
darienf 3:36de8b9e4b1a 5 * copy of this software and associated documentation files (the "Software"),
darienf 3:36de8b9e4b1a 6 * to deal in the Software without restriction, including without limitation
darienf 3:36de8b9e4b1a 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
darienf 3:36de8b9e4b1a 8 * and/or sell copies of the Software, and to permit persons to whom the
darienf 3:36de8b9e4b1a 9 * Software is furnished to do so, subject to the following conditions:
darienf 3:36de8b9e4b1a 10 *
darienf 3:36de8b9e4b1a 11 * The above copyright notice and this permission notice shall be included
darienf 3:36de8b9e4b1a 12 * in all copies or substantial portions of the Software.
darienf 3:36de8b9e4b1a 13 *
darienf 3:36de8b9e4b1a 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
darienf 3:36de8b9e4b1a 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
darienf 3:36de8b9e4b1a 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
darienf 3:36de8b9e4b1a 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
darienf 3:36de8b9e4b1a 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
darienf 3:36de8b9e4b1a 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
darienf 3:36de8b9e4b1a 20 * OTHER DEALINGS IN THE SOFTWARE.
darienf 3:36de8b9e4b1a 21 *
darienf 3:36de8b9e4b1a 22 * Except as contained in this notice, the name of Maxim Integrated
darienf 3:36de8b9e4b1a 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
darienf 3:36de8b9e4b1a 24 * Products, Inc. Branding Policy.
darienf 3:36de8b9e4b1a 25 *
darienf 3:36de8b9e4b1a 26 * The mere transfer of this software does not imply any licenses
darienf 3:36de8b9e4b1a 27 * of trade secrets, proprietary technology, copyrights, patents,
darienf 3:36de8b9e4b1a 28 * trademarks, maskwork rights, or any other form of intellectual
darienf 3:36de8b9e4b1a 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
darienf 3:36de8b9e4b1a 30 * ownership rights.
darienf 3:36de8b9e4b1a 31 *******************************************************************************
darienf 3:36de8b9e4b1a 32 */
darienf 3:36de8b9e4b1a 33 #ifndef _RPCSERVER_H_
darienf 3:36de8b9e4b1a 34 #define _RPCSERVER_H_
darienf 3:36de8b9e4b1a 35
darienf 3:36de8b9e4b1a 36 #include "mbed.h"
darienf 3:36de8b9e4b1a 37 #include "RpcFifo.h"
darienf 3:36de8b9e4b1a 38 #include "Device_Logging.h"
darienf 3:36de8b9e4b1a 39
darienf 3:36de8b9e4b1a 40 /**
darienf 3:36de8b9e4b1a 41 * @brief Reads the Version of the HSP FCache_Writel
darienf 3:36de8b9e4b1a 42 */
darienf 3:36de8b9e4b1a 43 int System_ReadVer(char argStrs[32][32], char replyStrs[32][32]);
darienf 3:36de8b9e4b1a 44 /**
darienf 3:36de8b9e4b1a 45 * @brief Reads the built time of the RPC FW
darienf 3:36de8b9e4b1a 46 */
darienf 3:36de8b9e4b1a 47 int System_ReadBuildTime(char argStrs[32][32], char replyStrs[32][32]);
darienf 3:36de8b9e4b1a 48
darienf 3:36de8b9e4b1a 49 void RPC__init(void);
darienf 3:36de8b9e4b1a 50 void RPC__call(char *request, char *reply);
darienf 3:36de8b9e4b1a 51 fifo_t *GetUSBIncomingFifo(void);
darienf 3:36de8b9e4b1a 52 fifo_t *GetStreamOutFifo(void);
darienf 3:36de8b9e4b1a 53 /**
darienf 3:36de8b9e4b1a 54 * @brief Batch process RPC commands
darienf 3:36de8b9e4b1a 55 */
darienf 3:36de8b9e4b1a 56 void RPC_ProcessCmds(char *cmds);
darienf 3:36de8b9e4b1a 57 /**
darienf 3:36de8b9e4b1a 58 * @brief Initialize the RPC server with all of the commands that it supports
darienf 3:36de8b9e4b1a 59 */
darienf 3:36de8b9e4b1a 60 void RPC_init(void);
darienf 3:36de8b9e4b1a 61 /**
darienf 3:36de8b9e4b1a 62 * @brief Initialize the RPC server with all of the commands that it supports
darienf 3:36de8b9e4b1a 63 */
darienf 3:36de8b9e4b1a 64 void RPC_call(char *request, char *reply);
darienf 3:36de8b9e4b1a 65
darienf 3:36de8b9e4b1a 66 #endif // _RPCSERVER_H_