[WIP] my attempts to develop on my stm32 nuclo board/numworks calculator
Go to file
2024-04-17 20:10:01 +02:00
.github/workflows Update makefile.yml 2024-04-02 18:54:31 +02:00
.vscode Documentation and clean up 2024-04-05 20:59:57 +02:00
base_nucleo adding numworks port (valid but not working) 2024-03-30 19:13:47 +01:00
chatgpt-try adding numworks port (valid but not working) 2024-03-30 19:13:47 +01:00
numworks_port started working on clock control, not working 2024-04-17 20:10:01 +02:00
README.md Update README.md 2024-03-24 13:54:56 +01:00

Nucleo-bare-metal

[WIP] my attempts to develop on my stm32 nuclo board

Building

  1. Install gnu-arm-none-eabi toolchain
  2. Clone the repo
git clone "https://github.com/ayabusa/Nucleo-bare-metal.git"
cd Nucleo-bare-metal
  1. Build the project (located in build/main.elf)
make all

Running/Debuging

st-util                                 # Download at https://github.com/stlink-org/stlink, it launches the gdb server, port 4242
gdb-multiarch main.elf                  # launch the gdb instance
(gdb) target extended-remote :4242      # connect to the st-util server
(gdb) load                              # load our binary
(gdb) continue                          # run it

Licence

All Rights Reserved

Copyright (c) 2024 ayabusa

Created by ayabusa

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.