Added documentation for Boards
Some pics and pin definitions
16
GettingStarted.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<!DOCTYPE HTML>
|
||||||
|
<html lang="en-US">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="refresh"
|
||||||
|
content="1;url="https://developer.mbed.org/handbook/Getting-Started-mbed-Exporters>
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.location.href = "https://developer.mbed.org/handbook/Getting-Started-mbed-Exporters"
|
||||||
|
</script>
|
||||||
|
<title>Page Redirection</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
If you are not redirected automatically, please follow the
|
||||||
|
<a href='https://developer.mbed.org/handbook/Getting-Started-mbed-Exporters'>link to the online exporter documentation</a>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
img/Nucleo_swd.jpg
Normal file
After Width: | Height: | Size: 252 KiB |
BIN
img/Revo.png
Normal file
After Width: | Height: | Size: 146 KiB |
BIN
img/Revo_FlexiIO.png
Normal file
After Width: | Height: | Size: 162 KiB |
BIN
img/Revo_Flexiport.png
Normal file
After Width: | Height: | Size: 92 KiB |
BIN
img/Revo_Main.png
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
img/Revo_Sonarr.png
Normal file
After Width: | Height: | Size: 60 KiB |
BIN
img/Revo_swd.png
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
img/Revolution Schematic.pdf
Normal file
BIN
img/USB VCP.png
Normal file
After Width: | Height: | Size: 528 KiB |
BIN
img/nucleof411re-morpho.png
Normal file
After Width: | Height: | Size: 477 KiB |
31
src/targets/revo_f4/pins.h
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
#ifndef PINS_H
|
||||||
|
#define PINS_H
|
||||||
|
|
||||||
|
#include "PinNames.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef enum
|
||||||
|
{
|
||||||
|
ledBlue = PB_5,
|
||||||
|
ledOrange = PB_4,
|
||||||
|
sensV = PC_2,
|
||||||
|
sensC = PC_1,
|
||||||
|
|
||||||
|
MPU_MOSI = PA_7,
|
||||||
|
MPU_MISO = PA_6,
|
||||||
|
MPU_SCLK = PA_5,
|
||||||
|
MPU_NSS = PA_4,
|
||||||
|
|
||||||
|
COMPASS_SCL = PB_8,
|
||||||
|
COMPASS_SDA = PB_9,
|
||||||
|
|
||||||
|
} PinMap;
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|