Hi, I just wanted to start programming ARM, I got an NXP LPC1768 board! I wrote my first program!
here is code
#include "LPC17xx.h" int main(void) { int a; LPC_GPIO1->FIODIR=1; while(1) { LPC_GPIO1->FIOSET=1; for(a=0;a<7200000;a…
I have problem, I have to find a way to update code to my arm device without removing it, for that purpose I'll use serial communication. Does anyone have idea how to do it?
Hi,
Is it possible to dual boot ARM powered development boards such as Beagleboard or Arndale exynos 5250? what modifications to the bootloader must be done to the bootloader (e.g. Uboot) to achieve this? Please suggest any tutorial on a related topic…