User Activity

 have written this ARM assembly code. It is supposed to put the Fibonacci sequence numbers in R4 register. I'm trying to implement this C code in assembly:int fibbonacci(int n)   {   if(n == 0)   return 0;   else if(n == 1)   return 1;   ...
Hello everyone,I'm just starting to learn assembly for the ARM architecture. I'm also in general a beginner with the assembly language I have just some minor experience with the x86 assembly but that's about it.I'm following a course on Udemy and I h...
Hello,I have an STM32 Nucleo-64 board with STM32F446RE MCU.I want to talk to it's native bootloader stored in system memory and play around with it a bit(do some in application programming, etc) via the demonstrator program.Since the bootloader commu...
Hello,I'm trying to establish SPI communication between STM32F4 discovery board with STM32F407 MCU and an Arduino uno. The arduino acts as a master and I'm using it to interface my board(which acts as slave) with the PC since I like arduino uno's ser...
Hello,I'm learning DMA and using CubeMX to generate the configuration codes and SystemWorkbench(Eclipse) as editor to edit my application.To better grasp the concept of DMA I'm doing a small project in which I use USART in combination with DMA to rea...
Kudos from