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@19:0a3ae902722e, 2017-10-18 (annotated)
- Committer:
- Muglug
- Date:
- Wed Oct 18 15:27:31 2017 +0000
- Revision:
- 19:0a3ae902722e
- Parent:
- 18:7f9c2b8541e1
- Child:
- 23:aad5fd1b3ef9
SD Card Testing added.
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. |
| Muglug | 19:0a3ae902722e | 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 | 15:0a95d295e76e | 24 | // Your code here! |
| Muglug | 18:7f9c2b8541e1 | 25 | #define RADIO_TX PA_11 |
| Muglug | 18:7f9c2b8541e1 | 26 | #define RADIO_RX PA_12 |
| Muglug | 19:0a3ae902722e | 27 | #define RADIO_RESET NC |
| Muglug | 19:0a3ae902722e | 28 | |
| Muglug | 19:0a3ae902722e | 29 | #define SD_CLK PC_10 |
| Muglug | 19:0a3ae902722e | 30 | #define SD_MISO PC_11 |
| Muglug | 19:0a3ae902722e | 31 | #define SD_MOSI PC_12 |
| Muglug | 19:0a3ae902722e | 32 | #define SD_CS PD_2 |
| Muglug | 19:0a3ae902722e | 33 | |
| gusteibolt | 15:0a95d295e76e | 34 | |
| gusteibolt | 2:7f90cc734a10 | 35 | #endif // CONFIGURATION_H_ |
| gusteibolt | 2:7f90cc734a10 | 36 | //----------------------------------------------------------------- |

