Difference between revisions of "LPC General"

From Wiki at Neela Nurseries
Jump to: navigation, search
m (^ LPC_SYSCON Register Data Structure)
m (^ LPC_SYSCON Register Data Structure)
Line 35: Line 35:
 
   ./examples/Source_Code/common/inc/LPC8xx.h
 
   ./examples/Source_Code/common/inc/LPC8xx.h
  
 +
 +
- 2019-05-13 Monday -
 +
 +
In addition to NXP part header file LPC8xx.h, the header syscon.h also has some control register definitions . . .
  
  

Revision as of 14:55, 13 May 2019

LPC General
NXP LPC microcontroller libraries and coding framework
2019-05-09 Thusday



OVERVIEW

Wiki article to capture NXP LPC family microcontroller code libraries and coding framework details


^ LPC_SYSCON Register Data Structure

Ok, in bringing in NXP Example Code Bundle for LPC8xx family controllers, IAR compiler complains of data member not found for structure LPC_SYSCON. By its name this looks like a wide ranging, covers-lots-of-settings data structure. We need to find where this data structure is defined in library and shared, system code referenced by our LPC804 targeted firmware project . . . this file looks promising:


 ./arm/8.22.2/NXP/LPC8xx/LPCXpresso/simple/Common/inc/LPC8xx.h:186:} LPC_SYSCON_TypeDef;


similar lines appear in:


 ./Common/inc/LPC8xx.h:186:} LPC_SYSCON_TypeDef;


and in this file too:


  ./examples/Source_Code/common/inc/LPC8xx.h


- 2019-05-13 Monday -

In addition to NXP part header file LPC8xx.h, the header syscon.h also has some control register definitions . . .


^ References

- - - top of page - - -