Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
15 views

Trying to onboard my Azure subscription in Cortex Cloud, I execute the bash script in Azure bash CLI. After fixing some role issues, I now get the following error: The limit of 5 diagnostic settings ...
Adrien W's user avatar
0 votes
2 answers
60 views

I am using Qemu with - qemu-system-arm \ -M mps3-an524 \ -cpu cortex-m33 \ -smp 2 \ -nographic \ -kernel firmware.elf It is runs perfectly. UART works ...
RudraSama's user avatar
1 vote
0 answers
43 views

I'm working on a project using the ATSAMD51J19A with a UF2 bootloader, which appears as a storage device over USB for easy firmware updates. Currently, the bootloader sets an LED using a PWM signal on ...
user31568508's user avatar
0 votes
1 answer
74 views

When developing a Rust no_std bootloader for my micro:bit v2.21 (Cortex-M4, nRF52833), I have encountered a weird error. The bootloader jumps to the main application using cortex_m::asm::bootstrap(sp, ...
Pavel Lobodinský's user avatar
-4 votes
1 answer
172 views

I am starting a S32K144 based project with S32 Design Studio. I previously worked with STM32/STM32 Cube IDE and expecting somewhat similar experience here (maybe with less features). One of the things ...
Alexandr Savochkin's user avatar
0 votes
1 answer
126 views

I am trying some bare metal program on cortex-M4 processor. So I try to find a QEMU virtual platform that can work with cortex-M4. My QEMU: QEMU emulator version 4.2.1 (Debian 1:4.2-3ubuntu6.30) ...
smwikipedia's user avatar
0 votes
1 answer
283 views

The title says almost everything. Does (Cortex-M33) RP2350 rasberry-pi-pico 2 utilizes any SIMD-instructions (at all) via DSP during arm_dot_prod_f32 or does it simply loop-unrolls? I know for certain ...
Giorgos Xou's user avatar
  • 2,362
0 votes
0 answers
87 views

My GitHub Repository I have coded a basic scheduler to switch between three tasks based on systick exception. It worked well enough when it was a single file startup.S (in assembly only). I wrote the ...
Shambhu Kumar's user avatar
1 vote
0 answers
49 views

We have a monorepo with about a dozen controller projects and are starting to move over to vscode and generally like cortex-debug a lot. The only issue is that the number of projects x number of ...
Bruno's user avatar
  • 719
0 votes
1 answer
81 views

I an generating an ELF file for a Cortex M MCU using GCC. I want to know if there is a way of accomplishing the following. I wish to incorporate a new function into the ELF file at a later point in ...
ACBlue's user avatar
  • 151
1 vote
1 answer
73 views

In main function after nexti instruction on bl, gdb debugger continues instead of stopping. The issue does not occur in functions called by main (e.g. I can step over functions called in ...
derASMCoder's user avatar
0 votes
1 answer
53 views

Strange issue I’m stumped on: have some code I’ve been working on for months with no issues (well, not this issue). But suddenly, the assignment of a value to any structure member in a typedef’d ...
nobby's user avatar
  • 465
2 votes
1 answer
119 views

This is my C code void user_main(void) { u32 asd; osGetSysCnt(&asd); } This is the disassembly void user_main(void) { 10040230: b507 push {r0, r1, r2, lr} u32 asd; ...
Korsarq's user avatar
  • 805
3 votes
1 answer
83 views

I have the following definitions: static char xxxx; static uint8_t y; I am getting the following lines in the memory map: .bss._ZZL7createXvE4xxxx 0x200024c0 0x1 .bss._ZZL7createXvE11y ...
Oren Zvi's user avatar
2 votes
1 answer
121 views

I'm writing a mini OS for my STM32F0 board, which has a Cortex-M0 CPU based on the ARMv6-M architecture. In particular, I'm doing the msp/psp switch after I've created the process queue for the ...
France's user avatar
  • 21
1 vote
1 answer
64 views

I am a newbie trying to experiment with ARM M3 boot up sequence using gdb and arm-none-eabi compiler on qemu. I am able to run the code with the below linker and source file MEMORY { MEM : ORIGIN =...
devilbuild's user avatar
0 votes
0 answers
46 views

For example, if I want to write code without libraries, do I have to enable some system interrupts? I know that in STM32-M3, the RESET, NMI, and Hard Fault interrupts are enabled by default. However, ...
Hossein Man's user avatar
0 votes
0 answers
65 views

Is it possible the Cortex M MPU to disable write access to its own registers for privileged code. I want to setup the MPU once and disable MPU modifications forever. This will prevent someone to ...
momchil uzunov's user avatar
1 vote
1 answer
101 views

we have a strange issue on a Cortex M4 MCU. The compiled Firmware works if the binary is loaded with ST-LINK in the correct section, but using C-Lion and OpenOcd, The FW load operation, load also the ...
Giuliano Favro's user avatar
1 vote
0 answers
24 views

gnu .ld linker script -- I have added a MEMORY definition to hold a checksum: _CRC_Value = 0x12345678; MEMORY { RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 80K FLASH (rx) : ORIGIN = ...
Hunter Ritchie's user avatar
1 vote
0 answers
42 views

I crosscompile for cortex M microcontroller using arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi I compile using -fdata-sections and link using -Wl,--gc-sections -Wl,--sort-section=alignment In map ...
mastupristi's user avatar
  • 1,598
1 vote
2 answers
281 views

I have used multiple Cortex M parts in the past, primarily using IAR as my IDE. I am currently developing a project for a Cortex M0+ part using an Eclipse-based IDE (Infineon ModusToolbox). I'd like ...
nobby's user avatar
  • 465
0 votes
1 answer
97 views

First of all, I use arm cm3 core chips and the function of my codes is Shift operation. For example, UART receive "f0", save "0f" to the corresponding address. Codes are below. ...
ADemonevil's user avatar
1 vote
0 answers
67 views

I was looking at the Cortex-M55 TRM document and came across the following statement: 'Normal shareable cacheable attributes are converted to Normal Shareable Noncacheable by the processor' (...
강호성's user avatar
1 vote
1 answer
99 views

Details: embedded C, cortex M4 with operating system (RTX Kernel), compiled with ARM Compiler V5.06 update6 and Microlib. Inside a periodic task there are some functons call, one is a debug function: /...
Catosh's user avatar
  • 317

1
2 3 4 5
29