This is the latest working repository used in our demo video for the Maxim to display temperature readings on Bluetooth

Dependencies:   USBDevice

Committer:
darienf
Date:
Sat Apr 10 03:05:42 2021 +0000
Revision:
3:36de8b9e4b1a
Parent:
HSP/LoggingService/Logging.cpp@0:832122ce6748
ayoooo

Who changed what in which revision?

UserRevisionLine numberNew contents of line
darienf 0:832122ce6748 1 /*******************************************************************************
darienf 0:832122ce6748 2 * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved.
darienf 0:832122ce6748 3 *
darienf 0:832122ce6748 4 * Permission is hereby granted, free of charge, to any person obtaining a
darienf 0:832122ce6748 5 * copy of this software and associated documentation files (the "Software"),
darienf 0:832122ce6748 6 * to deal in the Software without restriction, including without limitation
darienf 0:832122ce6748 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
darienf 0:832122ce6748 8 * and/or sell copies of the Software, and to permit persons to whom the
darienf 0:832122ce6748 9 * Software is furnished to do so, subject to the following conditions:
darienf 0:832122ce6748 10 *
darienf 0:832122ce6748 11 * The above copyright notice and this permission notice shall be included
darienf 0:832122ce6748 12 * in all copies or substantial portions of the Software.
darienf 0:832122ce6748 13 *
darienf 0:832122ce6748 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
darienf 0:832122ce6748 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
darienf 0:832122ce6748 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
darienf 0:832122ce6748 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
darienf 0:832122ce6748 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
darienf 0:832122ce6748 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
darienf 0:832122ce6748 20 * OTHER DEALINGS IN THE SOFTWARE.
darienf 0:832122ce6748 21 *
darienf 0:832122ce6748 22 * Except as contained in this notice, the name of Maxim Integrated
darienf 0:832122ce6748 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
darienf 0:832122ce6748 24 * Products, Inc. Branding Policy.
darienf 0:832122ce6748 25 *
darienf 0:832122ce6748 26 * The mere transfer of this software does not imply any licenses
darienf 0:832122ce6748 27 * of trade secrets, proprietary technology, copyrights, patents,
darienf 0:832122ce6748 28 * trademarks, maskwork rights, or any other form of intellectual
darienf 0:832122ce6748 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
darienf 0:832122ce6748 30 * ownership rights.
darienf 0:832122ce6748 31 *******************************************************************************
darienf 0:832122ce6748 32 */
darienf 0:832122ce6748 33 #include "mbed.h"
darienf 0:832122ce6748 34 #include "RpcServer.h"
darienf 0:832122ce6748 35 #include "Logging.h"
darienf 0:832122ce6748 36 #include "S25FS512.h"
darienf 0:832122ce6748 37 #include "Peripherals.h"
darienf 0:832122ce6748 38
darienf 0:832122ce6748 39 /// length of flash page as dictated by the device
darienf 0:832122ce6748 40 #define LENGTH_OF_FLASH_PAGE 256 // length of flash page in bytes
darienf 0:832122ce6748 41 /// size in bytes of the external flash device on the HSP platform
darienf 0:832122ce6748 42 #define SIZE_OF_EXTERNAL_FLASH 0x2000000 // 33,554,432 Bytes
darienf 0:832122ce6748 43 /// start page of where the mission is defined
darienf 0:832122ce6748 44 #define MISSION_DEFINITION_START_PAGE 0x00
darienf 0:832122ce6748 45 /// end page of the mission
darienf 0:832122ce6748 46 #define MISSION_DEFINITION_END_PAGE 0x0F
darienf 0:832122ce6748 47 /// page of where the logging data starts
darienf 0:832122ce6748 48 #define LOGGING_START_PAGE 0x12
darienf 0:832122ce6748 49 /// the last logging page
darienf 0:832122ce6748 50 #define LOGGING_END_PAGE ((SIZE_OF_EXTERNAL_FLASH / LENGTH_OF_FLASH_PAGE) - 1)
darienf 0:832122ce6748 51
darienf 0:832122ce6748 52 /// static flag to know if logging was started via RPC
darienf 0:832122ce6748 53 static bool startLoggingViaRpc = false;
darienf 0:832122ce6748 54
darienf 0:832122ce6748 55 /**
darienf 0:832122ce6748 56 * @brief This will read the mission location and if there is something valid,
darienf 0:832122ce6748 57 * then run the Logging_ProcessMissionCmds()
darienf 0:832122ce6748 58 * @param cmdBuffer buffer
darienf 0:832122ce6748 59 */
darienf 0:832122ce6748 60 uint32_t Logging_IsMissionDefined(uint8_t *cmdBuffer) {
darienf 0:832122ce6748 61 uint32_t valid = 1;
darienf 0:832122ce6748 62 if ((cmdBuffer[0] == 0xFF) || (cmdBuffer[0] == 0x0))
darienf 0:832122ce6748 63 valid = 0;
darienf 0:832122ce6748 64 return valid;
darienf 0:832122ce6748 65 }
darienf 0:832122ce6748 66
darienf 0:832122ce6748 67 /**
darienf 0:832122ce6748 68 * @brief Read the mission from flash and place in buffer
darienf 0:832122ce6748 69 * @param buffer pointer to byte array that will contain the read results
darienf 0:832122ce6748 70 */
darienf 0:832122ce6748 71 int8_t Logging_ReadMissionFromFlash(uint8_t *buffer) {
darienf 0:832122ce6748 72 return Peripherals::s25FS512()->readPages_Helper(
darienf 0:832122ce6748 73 MISSION_DEFINITION_START_PAGE, MISSION_DEFINITION_END_PAGE, buffer, 0);
darienf 0:832122ce6748 74 }
darienf 0:832122ce6748 75
darienf 0:832122ce6748 76 //******************************************************************************
darienf 0:832122ce6748 77 // return the page where mission is defined, Mission specific
darienf 0:832122ce6748 78 uint32_t Logging_GetMissionStartPage(void) {
darienf 0:832122ce6748 79 return MISSION_DEFINITION_START_PAGE;
darienf 0:832122ce6748 80 }
darienf 0:832122ce6748 81
darienf 0:832122ce6748 82 //******************************************************************************
darienf 0:832122ce6748 83 // return the page where the mission definition ends, Mission specific
darienf 0:832122ce6748 84 uint32_t Logging_GetMissionEndPage(void) { return MISSION_DEFINITION_END_PAGE; }
darienf 0:832122ce6748 85
darienf 0:832122ce6748 86 //******************************************************************************
darienf 0:832122ce6748 87 // Returns the location where the Writing can start from, for data logging...
darienf 0:832122ce6748 88 uint32_t Logging_GetLoggingStartPage(void) { return LOGGING_START_PAGE; }
darienf 0:832122ce6748 89
darienf 0:832122ce6748 90 //******************************************************************************
darienf 0:832122ce6748 91 // Returns the end location available where the Flash ends essentially.... for
darienf 0:832122ce6748 92 // data logging.
darienf 0:832122ce6748 93 uint32_t Logging_GetLoggingEndPage(void) { return LOGGING_END_PAGE; }
darienf 0:832122ce6748 94
darienf 0:832122ce6748 95 //******************************************************************************
darienf 0:832122ce6748 96 void Logging_SetStart(bool state) { startLoggingViaRpc = state; }
darienf 0:832122ce6748 97
darienf 0:832122ce6748 98 //******************************************************************************
darienf 0:832122ce6748 99 bool Logging_GetStart(void) { return startLoggingViaRpc; }
darienf 0:832122ce6748 100
darienf 0:832122ce6748 101 //******************************************************************************
darienf 0:832122ce6748 102 // for debugging... always say that usb is not connected... for easy bench
darienf 0:832122ce6748 103 // testing
darienf 0:832122ce6748 104 uint32_t Usb_IsConnected(void) { return 0; }