Added documentation for Boards

Some pics and pin definitions
This commit is contained in:
philsson 2018-08-25 11:34:21 +02:00
parent 436ed4dc3b
commit 0c5806dc2e
12 changed files with 47 additions and 0 deletions

16
GettingStarted.html Normal file
View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 KiB

BIN
img/Revo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

BIN
img/Revo_FlexiIO.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

BIN
img/Revo_Flexiport.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

BIN
img/Revo_Main.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

BIN
img/Revo_Sonarr.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

BIN
img/Revo_swd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

BIN
img/USB VCP.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 528 KiB

BIN
img/nucleof411re-morpho.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 477 KiB

View 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