Los Putacos / Mbed OS WearableDevice_Nucleo

Dependencies:   MPU9250_SPI SDFileSystem XBeeLib

Committer:
Muglug
Date:
Wed Oct 25 13:24:05 2017 +0000
Revision:
23:aad5fd1b3ef9
Parent:
19:0a3ae902722e
Child:
26:4bc56ce08d15
SD Card Working.;

Who changed what in which revision?

UserRevisionLine numberNew 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
Muglug 23:aad5fd1b3ef9 18 // Microcontroller definition - Comment the Version not used
Muglug 23:aad5fd1b3ef9 19 // #define STM32F401RET6 1
Muglug 23:aad5fd1b3ef9 20 #define STM32F446RET6 1
gusteibolt 2:7f90cc734a10 21
gusteibolt 2:7f90cc734a10 22 // Debug mode
gusteibolt 2:7f90cc734a10 23 #define DEBUG_MODE 0
gusteibolt 2:7f90cc734a10 24
gusteibolt 2:7f90cc734a10 25 #endif // CONFIGURATION_H_
gusteibolt 2:7f90cc734a10 26 //-----------------------------------------------------------------