Dreamforce 2014 Workshop RFID Case Generator - FRDM-K64F

Dependencies:   EndpointMain-rfid EthernetInterface StatusReporter BufferedSerial mbed-rtos mbed Logger C12832

Fork of df-2014-workshop-rfid-case-generator-ublox by Doug Anson

Definitions.h

Committer:
ansond
Date:
2014-09-24
Revision:
50:6e6b8351ee60
Parent:
48:0ff25290cce3
Child:
51:5cd56a48084a

File content as of revision 50:6e6b8351ee60:

/* Copyright C2014 ARM, MIT License
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
 * and associated documentation files the "Software", to deal in the Software without restriction,
 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all copies or
 * substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
 
 #ifndef _DEFINITIONS_H_
 #define _DEFINITIONS_H_
 
 // ----------------- WORKSHOP TUNABLES -----------------  
 
 // 3 Reports for RFID-tag based support/repair conditions
 #define FIRST_REPORT_RFID         7550993
 #define FIRST_REPORT_NAME         "Tech 49"
 #define FIRST_REPORT_DESCRIPTION  "Light Out"
 #define FIRST_REPORT_CONDITION    "Investigating Issue"
 #define FIRST_REPORT_LATITUDE     "37.404120"
 #define FIRST_REPORT_LONGITUDE    "-121.973195"
 
 #define SECOND_REPORT_RFID        7567145
 #define SECOND_REPORT_NAME        "Tech 49"
 #define SECOND_REPORT_DESCRIPTION "Light Out"
 #define SECOND_REPORT_CONDITION   "Resolved - lightbulb burned out"
 #define SECOND_REPORT_LATITUDE    "37.404120"
 #define SECOND_REPORT_LONGITUDE   "-121.973195"
 
 #define THIRD_REPORT_RFID         7559217
 #define THIRD_REPORT_NAME         "Tech 49"
 #define THIRD_REPORT_DESCRIPTION  "Light Out"
 #define THIRD_REPORT_CONDITION    "Unresolved - escalate"
 #define THIRD_REPORT_LATITUDE     "37.404120"
 #define THIRD_REPORT_LONGITUDE    "-121.973195"
 
 // ----------------- WORKSHOP TUNABLES ----------------- 
 
 // mbed 
 #include "mbed.h"
 
 // Our App version
 #define APP_VERSION               "1.0.0"
  
 // DF2014 CaseGenerator Relay for mbed - ties into the Salesforce APEX host for case generation
 #define DF_CASE_GEN_URL           "https://df2014-arm-developer-edition.na15.force.com/services/apexrest/CaseService"
 
 // Enable/Disable RFID ID12 usage
 #define ID12_ENABLE               true    // true - enable, false - disable
 
 // maximum memory buffer chunk (including HTTPS requests)
 #define MAX_BUFFER_LENGTH         512
   
 // What platform we are compiling on
 #define _NXP_PLATFORM             false
 #define _UBLOX_PLATFORM           false
 #define _K64F_PLATFORM            true
 
 // K64F needs to launch the task in a thread with a large stack size...
 #if _K64F_PLATFORM
    #define STACK_SIZE             40000
 #endif
  
 // Wait Time for iterations (ms)
 #define WAIT_TIME_MS              500
 
 // Blink Time
 #define BLINK_TIME                250
 
 // Tunables for ReportDB
 #define DB_MAX_NAME_LENGTH        64
 #define DB_MAX_DESCRIPTION_LENGTH 128
 #define DB_MAX_CONDITION_LENGTH   128
 #define DB_MAX_LATLONG_LENGTH     32
 #define DB_MAX_NUM_REPORTS        3
 
 // convenience definitions for ReportDB... 3 RFID tags/station  
 #define FIRST_REPORT              0
 #define SECOND_REPORT             1
 #define THIRD_REPORT              2
 
 // PINS for RFID Reader
 #if _NXP_PLATFORM
    #define RFID_TX_PIN            p13
    #define RFID_RX_PIN            p14
    #define TEMP_PIN               p15
 #endif
 #if _UBLOX_PLATFORM
    #define RFID_TX_PIN            D1
    #define RFID_RX_PIN            D0
    #define TEMP_PIN               A3
 #endif
 #if _K64F_PLATFORM
    #define RFID_TX_PIN            D1
    #define RFID_RX_PIN            D0
    #define TEMP_PIN               A3
 #endif
 
 #endif // _DEFINITIONS_H_