SENtral Simple Serial Host interface for PNI Sensor Corp SENtral-A2 motion coprocessor. For use with the RM3100RTI Arduino shield module on top of an STM4 serial mbed board. Will work with an PNI RM3100RTI module or M&M motion modules. Interaction with unit using built in USB serial serial port set for 115200 baud. Send '?' char for menu. Presently requires SENtral firmware to either be loaded in the RM3100RTI Arduino shield SD Card or preloaded in the RM3100RTI or M&M module's EEPROM. Firmware is typically preloaded on the module's EEPROM by PNI. PNI Sensor, 2019 www.pnicorp.com

Dependencies:   mbed SDFileSystemVSG

SENtral Simple Serial Host interface for PNI Sensor Corp SENtral-A2 motion coprocessor. For use with the RM3100RTI Arduino shield module on top of an STM4 serial mbed board. Will work with an PNI RM3100RTI module or M&M motion modules. Interaction with unit using built in USB serial serial port set for 115200 baud. Send '?' char for menu. Presently requires SENtral firmware to either be loaded in the RM3100RTI Arduino shield SD Card or preloaded in the RM3100RTI or M&M module's EEPROM. Firmware is typically preloaded on the module's EEPROM by PNI. PNI Sensor, 2019 www.pnicorp.com

main.h

Committer:
JoeMiller
Date:
2016-10-25
Revision:
7:a4ea90b073ef
Parent:
0:02c0c2cbc3df

File content as of revision 7:a4ea90b073ef:

#ifndef MAIN_H
#define MAIN_H

#include "em7186_types.h"
#include <mbed.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include "mbed_objects.h"
#include "em7186.h"
#include "SDFileSystem.h"


extern u8   serialCommandMode;
extern u8   apSuspendMode;
extern u8   displayText;
extern u8   reportMetaData;
extern u8   fw[];
//extern u8   warmStartFile[];
extern FILE *flog;

#endif