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@15:0a95d295e76e, 2017-10-17 (annotated)
- Committer:
- gusteibolt
- Date:
- Tue Oct 17 11:26:48 2017 +0000
- Revision:
- 15:0a95d295e76e
- Parent:
- 14:13fb16fbb444
- Child:
- 16:dd9ec4f4bbdd
Added defines for XbeeLib as required:; - FRAME_BUFFER_SIZE; - MAX_FRAME_PAYLOAD_LEN; - SYNC_OPS_TIMEOUT_MS
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| gusteibolt | 2:7f90cc734a10 | 1 | /* |
| gusteibolt | 2:7f90cc734a10 | 2 | * Los Putacos |
| gusteibolt | 2:7f90cc734a10 | 3 | * Copyright (C) 2017, All rights reserved. |
| gusteibolt | 2:7f90cc734a10 | 4 | * ________________________________________ |
| gusteibolt | 2:7f90cc734a10 | 5 | * |
| gusteibolt | 2:7f90cc734a10 | 6 | * Created by: Gustavo Campana, Michael Schmidt, Miguel Lopez |
| gusteibolt | 2:7f90cc734a10 | 7 | * Date: 11-Oct-2017 |
| gusteibolt | 2:7f90cc734a10 | 8 | * Version: V0.1 |
| gusteibolt | 2:7f90cc734a10 | 9 | */ |
| gusteibolt | 2:7f90cc734a10 | 10 | |
| gusteibolt | 2:7f90cc734a10 | 11 | //----------------------------------------------------------------- |
| gusteibolt | 2:7f90cc734a10 | 12 | #ifndef CONFIGURATION_H_ |
| gusteibolt | 2:7f90cc734a10 | 13 | #define CONFIGURATION_H_ |
| gusteibolt | 2:7f90cc734a10 | 14 | |
| gusteibolt | 2:7f90cc734a10 | 15 | // Code version control |
| gusteibolt | 2:7f90cc734a10 | 16 | #define CODE_VERSION "0.1" |
| gusteibolt | 2:7f90cc734a10 | 17 | |
| gusteibolt | 2:7f90cc734a10 | 18 | // Microcontroller definition |
| gusteibolt | 2:7f90cc734a10 | 19 | #define MICROCONTROLLER "STM32F401RET6" |
| gusteibolt | 2:7f90cc734a10 | 20 | |
| gusteibolt | 2:7f90cc734a10 | 21 | // Debug mode |
| gusteibolt | 2:7f90cc734a10 | 22 | #define DEBUG_MODE 0 |
| gusteibolt | 2:7f90cc734a10 | 23 | |
| gusteibolt | 14:13fb16fbb444 | 24 | /* XbeeLib Configurations */ |
| gusteibolt | 14:13fb16fbb444 | 25 | #define FRAME_BUFFER_SIZE 100 //MAX 256 (type uint8_t) |
| gusteibolt | 14:13fb16fbb444 | 26 | #define MAX_FRAME_PAYLOAD_LEN 0x10 // TxReqZBDM (type uint16_t) |
| gusteibolt | 14:13fb16fbb444 | 27 | #define SYNC_OPS_TIMEOUT_MS 1000 |
| gusteibolt | 14:13fb16fbb444 | 28 | |
| gusteibolt | 15:0a95d295e76e | 29 | // Your code here! |
| gusteibolt | 15:0a95d295e76e | 30 | |
| gusteibolt | 2:7f90cc734a10 | 31 | #endif // CONFIGURATION_H_ |
| gusteibolt | 2:7f90cc734a10 | 32 | //----------------------------------------------------------------- |

