|
|||||||||||
|
Technical Support Support Resources
Product Information |
C51: Accessing an External SFR in a C ProgramInformation in this article applies to:
QUESTIONIn C51, how can I declare SFRs in one source module and access them as external declarations in another source module? ANSWERFirst, you need to declare the SFR variables in an assembly program as shown below.
Then, you can write a C program to access these "external" SFRs. For example:
This is useful if you want to create a library of routines that access STUFF attached to the port pins of the 8051 like a push button on P1.1 and an LED on P2.3. However, you realize that the next project you do will have a button on a different port and an LED on still a different port. Furthermore, you want to make the library generic so you can use it over and over once it is debugged. Obviously, you need to have a way to "assign" the SFR addresses outside of the library. There are several reasons why this is a cool idea. One is so that you can have a generic library of routines that you use that always work that you provide as a courtesy to clients. You give them the library but NOT the source code. To make this work, all you need to do is to change the addresses in the A51 program to match your hardware, link it in with the library, and PRESTO, you have external SFR definitions! SEE ALSO
Last Reviewed: Thursday, February 25, 2021 | ||||||||||
|
|||||||||||
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers
of your data.