Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MPU9250_SPI SDFileSystem XBeeLib
configuration.h
- Committer:
- gusteibolt
- Date:
- 2017-10-17
- Revision:
- 15:0a95d295e76e
- Parent:
- 14:13fb16fbb444
- Child:
- 16:dd9ec4f4bbdd
File content as of revision 15:0a95d295e76e:
/*
* Los Putacos
* Copyright (C) 2017, All rights reserved.
* ________________________________________
*
* Created by: Gustavo Campana, Michael Schmidt, Miguel Lopez
* Date: 11-Oct-2017
* Version: V0.1
*/
//-----------------------------------------------------------------
#ifndef CONFIGURATION_H_
#define CONFIGURATION_H_
// Code version control
#define CODE_VERSION "0.1"
// Microcontroller definition
#define MICROCONTROLLER "STM32F401RET6"
// Debug mode
#define DEBUG_MODE 0
/* XbeeLib Configurations */
#define FRAME_BUFFER_SIZE 100 //MAX 256 (type uint8_t)
#define MAX_FRAME_PAYLOAD_LEN 0x10 // TxReqZBDM (type uint16_t)
#define SYNC_OPS_TIMEOUT_MS 1000
// Your code here!
#endif // CONFIGURATION_H_
//-----------------------------------------------------------------

