Lines Matching +full:smart +full:- +full:mode
10 the V2M Beetle board. It provides support for the Beetle ARM Cortex-M3 CPU and
13 - Nested Vectored Interrupt Controller (NVIC)
14 - System Tick System Clock (SYSTICK)
15 - Cortex-M System Design Kit GPIO
16 - Cortex-M System Design Kit UART
29 - ARM Cortex-M3
30 - ARM IoT Subsystem for Cortex-M
31 - CORDIO Bluetooth Smart radio
32 - Memory
34 - 256KB of embedded flash
35 - 128KB SRAM
36 - 2MB of external QSPI flash.
38 - Debug
40 - JTAG, SWD & 4 bit TRACE
41 - CMSIS-DAP with a virtual UART port
43 - Arduino interface
45 - GPIO, UART, SPI, I2C
46 - Analog signals
54 +-----------+------------+-------------------------------------+
57 | NVIC | on-chip | nested vector interrupt controller |
58 +-----------+------------+-------------------------------------+
59 | SYSTICK | on-chip | systick |
60 +-----------+------------+-------------------------------------+
61 | UART | on-chip | serial port-polling; |
62 | | | serial port-interrupt |
63 +-----------+------------+-------------------------------------+
64 | PINMUX | on-chip | pinmux |
65 +-----------+------------+-------------------------------------+
66 | GPIO | on-chip | gpio |
67 +-----------+------------+-------------------------------------+
68 | WATCHDOG | on-chip | watchdog |
69 +-----------+------------+-------------------------------------+
70 | TIMER | on-chip | timer |
71 +-----------+------------+-------------------------------------+
79 .. code-block:: console
86 Beetle is a Cortex-M3 based SoC and has 15 fixed exceptions and 45 IRQs.
88 A Cortex-M3/4-based board uses vectored exceptions. This means each exception
91 Handlers are provided for exceptions 1-6, 11-12, and 14-15. The table here
94 +------+------------+----------------+--------------------------+
98 +------+------------+----------------+--------------------------+
100 +------+------------+----------------+--------------------------+
102 +------+------------+----------------+--------------------------+
104 +------+------------+----------------+--------------------------+
106 +------+------------+----------------+--------------------------+
111 | | | mode | |
112 +------+------------+----------------+--------------------------+
114 | | | | run-time exceptions, |
116 +------+------------+----------------+--------------------------+
119 +------+------------+----------------+--------------------------+
121 +------+------------+----------------+--------------------------+
123 +------+------------+----------------+--------------------------+
128 …s 4 GPIO controllers. These controllers are responsible for pin muxing, input/output, pull-up, etc.
132 - Pins 0 - 15 are for GPIO 0
133 - Pins 16 - 31 are for GPIO 1
137 .. rst-class:: rst-columns
139 - D0 : P0_0
140 - D1 : P0_1
141 - D2 : P0_2
142 - D3 : P0_3
143 - D4 : P0_4
144 - D5 : P0_5
145 - D6 : P0_6
146 - D7 : P0_7
147 - D8 : P0_8
148 - D9 : P0_9
149 - D10 : P0_10
150 - D11 : P0_11
151 - D12 : P0_12
152 - D13 : P0_13
153 - D14 : P0_14
154 - D15 : P0_15
155 - D16 : P1_0
156 - D17 : P1_1
157 - D18 : P1_2
158 - D19 : P1_3
159 - D20 : P1_4
160 - D21 : P1_5
161 - D22 : P1_6
162 - D23 : P1_7
163 - D24 : P1_8
164 - D25 : P1_9
165 - D26 : P1_10
166 - D27 : P1_11
167 - D28 : P1_12
168 - D29 : P1_13
169 - D30 : P1_14
170 - D31 : P1_15
174 .. rst-class:: rst-columns
176 - UART_0_RX : D0
177 - UART_0_TX : D1
178 - SPI_0_CS : D10
179 - SPI_0_MOSI : D11
180 - SPI_0_MISO : D12
181 - SPI_0_SCLK : D13
182 - I2C_0_SCL : D14
183 - I2C_0_SDA : D15
184 - UART_1_RX : D16
185 - UART_1_TX : D17
186 - SPI_1_CS : D18
187 - SPI_1_MOSI : D19
188 - SPI_1_MISO : D20
189 - SPI_1_SCK : D21
190 - I2C_1_SDA : D22
191 - I2C_1_SCL : D23
198 V2M Beetle has one external and two on-chip oscillators. The slow clock is
216 ---------
220 - A USB connection to the host computer, which exposes a Mass Storage and an
222 - A Serial Flash device, which implements the USB flash disk file storage.
223 - A physical UART connection which is relayed over interface USB Serial port.
226 to `CMSIS-DAP Website`_.
229 -------------------------------------
232 the :zephyr:code-sample:`hello_world` application.
234 .. zephyr-app-commands::
235 :zephyr-app: samples/hello_world
245 .. code-block:: console
256 .. _CMSIS-DAP Website:
257 https://arm-software.github.io/CMSIS_5/DAP/html/index.html