Los Putacos / Mbed OS WearableDevice_Nucleo_New

Dependencies:   MPU9250_SPI

Fork of WearableDevice_Nucleo by Los Putacos

Committer:
gusteibolt
Date:
Wed Oct 11 17:30:35 2017 +0000
Revision:
2:7f90cc734a10
Child:
14:13fb16fbb444
Initial

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.
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 2:7f90cc734a10 24 // Your code here!
gusteibolt 2:7f90cc734a10 25
gusteibolt 2:7f90cc734a10 26
gusteibolt 2:7f90cc734a10 27 #endif // CONFIGURATION_H_
gusteibolt 2:7f90cc734a10 28 //-----------------------------------------------------------------