Adivina el Número Secreto desde la Terminal Serial

Dependencies:   mbed

Committer:
Antulius
Date:
Thu Sep 05 23:29:04 2019 +0000
Revision:
0:f680c41c1640
Adivina

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Antulius 0:f680c41c1640 1 /* mbed Microcontroller Library
Antulius 0:f680c41c1640 2 *******************************************************************************
Antulius 0:f680c41c1640 3 * Copyright (c) 2014, STMicroelectronics
Antulius 0:f680c41c1640 4 * All rights reserved.
Antulius 0:f680c41c1640 5 *
Antulius 0:f680c41c1640 6 * Redistribution and use in source and binary forms, with or without
Antulius 0:f680c41c1640 7 * modification, are permitted provided that the following conditions are met:
Antulius 0:f680c41c1640 8 *
Antulius 0:f680c41c1640 9 * 1. Redistributions of source code must retain the above copyright notice,
Antulius 0:f680c41c1640 10 * this list of conditions and the following disclaimer.
Antulius 0:f680c41c1640 11 * 2. Redistributions in binary form must reproduce the above copyright notice,
Antulius 0:f680c41c1640 12 * this list of conditions and the following disclaimer in the documentation
Antulius 0:f680c41c1640 13 * and/or other materials provided with the distribution.
Antulius 0:f680c41c1640 14 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Antulius 0:f680c41c1640 15 * may be used to endorse or promote products derived from this software
Antulius 0:f680c41c1640 16 * without specific prior written permission.
Antulius 0:f680c41c1640 17 *
Antulius 0:f680c41c1640 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Antulius 0:f680c41c1640 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Antulius 0:f680c41c1640 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Antulius 0:f680c41c1640 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Antulius 0:f680c41c1640 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Antulius 0:f680c41c1640 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Antulius 0:f680c41c1640 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Antulius 0:f680c41c1640 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Antulius 0:f680c41c1640 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Antulius 0:f680c41c1640 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Antulius 0:f680c41c1640 28 *******************************************************************************
Antulius 0:f680c41c1640 29
Antulius 0:f680c41c1640 30 */
Antulius 0:f680c41c1640 31 #ifndef MBED_PINNAMES_H
Antulius 0:f680c41c1640 32 #define MBED_PINNAMES_H
Antulius 0:f680c41c1640 33
Antulius 0:f680c41c1640 34 #include "cmsis.h"
Antulius 0:f680c41c1640 35 #include "PinNamesTypes.h"
Antulius 0:f680c41c1640 36
Antulius 0:f680c41c1640 37 #ifdef __cplusplus
Antulius 0:f680c41c1640 38 extern "C" {
Antulius 0:f680c41c1640 39 #endif
Antulius 0:f680c41c1640 40
Antulius 0:f680c41c1640 41 typedef enum {
Antulius 0:f680c41c1640 42 // Not connected
Antulius 0:f680c41c1640 43 NC = (int)0xFFFFFFFF,
Antulius 0:f680c41c1640 44
Antulius 0:f680c41c1640 45 // Ports
Antulius 0:f680c41c1640 46 PA_0 = 0x00,
Antulius 0:f680c41c1640 47 PA_1 = 0x01,
Antulius 0:f680c41c1640 48 PA_2 = 0x02,
Antulius 0:f680c41c1640 49 PA_3 = 0x03,
Antulius 0:f680c41c1640 50 PA_4 = 0x04,
Antulius 0:f680c41c1640 51 PA_5 = 0x05,
Antulius 0:f680c41c1640 52 PA_6 = 0x06,
Antulius 0:f680c41c1640 53 PA_7 = 0x07,
Antulius 0:f680c41c1640 54 PA_8 = 0x08,
Antulius 0:f680c41c1640 55 PA_9 = 0x09,
Antulius 0:f680c41c1640 56 PA_10 = 0x0A,
Antulius 0:f680c41c1640 57 PA_11 = 0x0B,
Antulius 0:f680c41c1640 58 PA_12 = 0x0C,
Antulius 0:f680c41c1640 59 PA_13 = NC,
Antulius 0:f680c41c1640 60 PA_14 = NC,
Antulius 0:f680c41c1640 61 PA_15 = 0x0F,
Antulius 0:f680c41c1640 62
Antulius 0:f680c41c1640 63 PB_0 = 0x10,
Antulius 0:f680c41c1640 64 PB_1 = 0x11,
Antulius 0:f680c41c1640 65 PB_2 = NC,
Antulius 0:f680c41c1640 66 PB_3 = 0x13,
Antulius 0:f680c41c1640 67 PB_4 = 0x14,
Antulius 0:f680c41c1640 68 PB_5 = 0x15,
Antulius 0:f680c41c1640 69 PB_6 = 0x16,
Antulius 0:f680c41c1640 70 PB_7 = 0x17,
Antulius 0:f680c41c1640 71 PB_8 = 0x18,
Antulius 0:f680c41c1640 72 PB_9 = 0x19,
Antulius 0:f680c41c1640 73 PB_10 = 0x1A,
Antulius 0:f680c41c1640 74 PB_11 = 0x1B,
Antulius 0:f680c41c1640 75 PB_12 = 0x1C,
Antulius 0:f680c41c1640 76 PB_13 = 0x1D,
Antulius 0:f680c41c1640 77 PB_14 = 0x1E,
Antulius 0:f680c41c1640 78 PB_15 = 0x1F,
Antulius 0:f680c41c1640 79
Antulius 0:f680c41c1640 80 PC_0 = NC,
Antulius 0:f680c41c1640 81 PC_1 = NC,
Antulius 0:f680c41c1640 82 PC_2 = NC,
Antulius 0:f680c41c1640 83 PC_3 = NC,
Antulius 0:f680c41c1640 84 PC_4 = NC,
Antulius 0:f680c41c1640 85 PC_5 = NC,
Antulius 0:f680c41c1640 86 PC_6 = NC,
Antulius 0:f680c41c1640 87 PC_7 = NC,
Antulius 0:f680c41c1640 88 PC_8 = NC,
Antulius 0:f680c41c1640 89 PC_9 = NC,
Antulius 0:f680c41c1640 90 PC_10 = NC,
Antulius 0:f680c41c1640 91 PC_11 = NC,
Antulius 0:f680c41c1640 92 PC_12 = NC,
Antulius 0:f680c41c1640 93 PC_13 = 0x2D,
Antulius 0:f680c41c1640 94 PC_14 = 0x2E,
Antulius 0:f680c41c1640 95 PC_15 = 0x2F,
Antulius 0:f680c41c1640 96
Antulius 0:f680c41c1640 97 PD_2 = NC,
Antulius 0:f680c41c1640 98
Antulius 0:f680c41c1640 99 // ADC internal channels
Antulius 0:f680c41c1640 100 ADC_TEMP = 0xF0,
Antulius 0:f680c41c1640 101 ADC_VREF = 0xF1,
Antulius 0:f680c41c1640 102
Antulius 0:f680c41c1640 103 // Arduino connector namings
Antulius 0:f680c41c1640 104 A0 = PA_0,
Antulius 0:f680c41c1640 105 A1 = PA_1,
Antulius 0:f680c41c1640 106 A2 = PA_4,
Antulius 0:f680c41c1640 107 A3 = PB_0,
Antulius 0:f680c41c1640 108 A4 = NC,
Antulius 0:f680c41c1640 109 A5 = NC,
Antulius 0:f680c41c1640 110 D0 = PA_3,
Antulius 0:f680c41c1640 111 D1 = PA_2,
Antulius 0:f680c41c1640 112 D2 = PA_10,
Antulius 0:f680c41c1640 113 D3 = PB_3,
Antulius 0:f680c41c1640 114 D4 = PB_5,
Antulius 0:f680c41c1640 115 D5 = PB_4,
Antulius 0:f680c41c1640 116 D6 = PB_10,
Antulius 0:f680c41c1640 117 D7 = PA_8,
Antulius 0:f680c41c1640 118 D8 = PA_9,
Antulius 0:f680c41c1640 119 D9 = NC,
Antulius 0:f680c41c1640 120 D10 = PB_6,
Antulius 0:f680c41c1640 121 D11 = PA_7,
Antulius 0:f680c41c1640 122 D12 = PA_6,
Antulius 0:f680c41c1640 123 D13 = PA_5,
Antulius 0:f680c41c1640 124 D14 = PB_9,
Antulius 0:f680c41c1640 125 D15 = PB_8,
Antulius 0:f680c41c1640 126
Antulius 0:f680c41c1640 127 // Generic signals namings
Antulius 0:f680c41c1640 128 Red_Led = NC,
Antulius 0:f680c41c1640 129 Green_Led = PC_13,
Antulius 0:f680c41c1640 130 Blue_Led = NC,
Antulius 0:f680c41c1640 131 LED1 = PC_13,
Antulius 0:f680c41c1640 132 LED2 = NC,
Antulius 0:f680c41c1640 133 LED3 = NC,
Antulius 0:f680c41c1640 134 LED4 = NC,
Antulius 0:f680c41c1640 135 USER_BUTTON = NC,
Antulius 0:f680c41c1640 136 SERIAL_TX = PA_2,
Antulius 0:f680c41c1640 137 SERIAL_RX = PA_3,
Antulius 0:f680c41c1640 138 USBTX = PA_2,
Antulius 0:f680c41c1640 139 USBRX = PB_3,
Antulius 0:f680c41c1640 140 CANRX = PB_8,
Antulius 0:f680c41c1640 141 CANTX = PB_9,
Antulius 0:f680c41c1640 142 I2C_SCL = PB_8,
Antulius 0:f680c41c1640 143 I2C_SDA = PB_9,
Antulius 0:f680c41c1640 144 SPI_MOSI = PA_7,
Antulius 0:f680c41c1640 145 SPI_MISO = PA_6,
Antulius 0:f680c41c1640 146 SPI_SCK = PA_5,
Antulius 0:f680c41c1640 147 SPI_CS = PB_6,
Antulius 0:f680c41c1640 148 PWM_OUT = PB_3
Antulius 0:f680c41c1640 149 } PinName;
Antulius 0:f680c41c1640 150
Antulius 0:f680c41c1640 151 #ifdef __cplusplus
Antulius 0:f680c41c1640 152 }
Antulius 0:f680c41c1640 153 #endif
Antulius 0:f680c41c1640 154
Antulius 0:f680c41c1640 155 #endif