Bare-metal configuration with EventQueue for a Bluepill board.
Warning
It does not work with the Mbed Online Compiler.
Follow these steps to import and compile it with Mbed CLI:
mbed import https://os.mbed.com/users/hudakz/code/Baremetal_EventQue_Bluepill mbed compile -t GCC_ARM -m bluepill
TARGET_BLUEPILL/device/cmsis_nvic.h@0:2cf53c219693, 2020-05-14 (annotated)
- Committer:
- hudakz
- Date:
- Thu May 14 05:27:57 2020 +0000
- Revision:
- 0:2cf53c219693
Bare-metal configuration with EventQueue for a Bluepill board.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
hudakz | 0:2cf53c219693 | 1 | /* mbed Microcontroller Library |
hudakz | 0:2cf53c219693 | 2 | ******************************************************************************* |
hudakz | 0:2cf53c219693 | 3 | * Copyright (c) 2016, STMicroelectronics |
hudakz | 0:2cf53c219693 | 4 | * All rights reserved. |
hudakz | 0:2cf53c219693 | 5 | * |
hudakz | 0:2cf53c219693 | 6 | * Redistribution and use in source and binary forms, with or without |
hudakz | 0:2cf53c219693 | 7 | * modification, are permitted provided that the following conditions are met: |
hudakz | 0:2cf53c219693 | 8 | * |
hudakz | 0:2cf53c219693 | 9 | * 1. Redistributions of source code must retain the above copyright notice, |
hudakz | 0:2cf53c219693 | 10 | * this list of conditions and the following disclaimer. |
hudakz | 0:2cf53c219693 | 11 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
hudakz | 0:2cf53c219693 | 12 | * this list of conditions and the following disclaimer in the documentation |
hudakz | 0:2cf53c219693 | 13 | * and/or other materials provided with the distribution. |
hudakz | 0:2cf53c219693 | 14 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
hudakz | 0:2cf53c219693 | 15 | * may be used to endorse or promote products derived from this software |
hudakz | 0:2cf53c219693 | 16 | * without specific prior written permission. |
hudakz | 0:2cf53c219693 | 17 | * |
hudakz | 0:2cf53c219693 | 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
hudakz | 0:2cf53c219693 | 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
hudakz | 0:2cf53c219693 | 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
hudakz | 0:2cf53c219693 | 21 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
hudakz | 0:2cf53c219693 | 22 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
hudakz | 0:2cf53c219693 | 23 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
hudakz | 0:2cf53c219693 | 24 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
hudakz | 0:2cf53c219693 | 25 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
hudakz | 0:2cf53c219693 | 26 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
hudakz | 0:2cf53c219693 | 27 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
hudakz | 0:2cf53c219693 | 28 | ******************************************************************************* |
hudakz | 0:2cf53c219693 | 29 | */ |
hudakz | 0:2cf53c219693 | 30 | |
hudakz | 0:2cf53c219693 | 31 | #ifndef MBED_CMSIS_NVIC_H |
hudakz | 0:2cf53c219693 | 32 | #define MBED_CMSIS_NVIC_H |
hudakz | 0:2cf53c219693 | 33 | |
hudakz | 0:2cf53c219693 | 34 | // CORE: 16 vectors (= 64 bytes from 0x00 to 0x3F) |
hudakz | 0:2cf53c219693 | 35 | // MCU Peripherals: 43 vectors (= 172 bytes from 0x40 to 0xEB) |
hudakz | 0:2cf53c219693 | 36 | // Total: 236 bytes to be reserved in RAM (see scatter file) |
hudakz | 0:2cf53c219693 | 37 | #define NVIC_NUM_VECTORS (16 + 43) |
hudakz | 0:2cf53c219693 | 38 | #define NVIC_RAM_VECTOR_ADDRESS 0x20000000 // Vectors positioned at start of RAM |
hudakz | 0:2cf53c219693 | 39 | |
hudakz | 0:2cf53c219693 | 40 | #endif |