LPC54628 Writing directly to registers

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

LPC54628 Writing directly to registers

607 Views
aswinprabhu
Contributor III

Hello,

I'm trying to write a sample code to drive an LED using the output pin of LPC54628 using uVision 5.28. Saw some examples in SDK 2.7.0 (gpio_led). However, I prefer to write to registers directly instead of using pin_mux files.

 

#include "LPC54628.h"

 

int main(void){

IOCON_PIO29 = 0x01;

 while(1){

}

}

I tried writing to IOCON register just to see whether the general idea/syntax is ok or not. It throws an error stating 'identifier "IOCON_PIO029" is undefined'.

 

Can someone tell which files am I missing?

Thanks in advance!

Labels (1)
Tags (2)
0 Kudos
0 Replies