This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Getting Started With nRF9E5

Hi,

I have relay board which is attached to the SoC module nRF9E5 and also microchip serial SPI EEPROM 25AA320 is also attached.

I have the EEPROM programmer and I am able to read, write, delete the EEPROM using programmer.

But I have to test relays and Leds attached to nRF9E5.

How do I get started? How to program the EEPROM for testing relays. Please help!

Parents Reply
  • I wrote just short simple program which Output a pin high in keil and created Hex file. Here is the program :-

      <#include <Nordic\reg9e5.h>
    
       int main(void)
      {
           P0_ALT = 0x00;     
           P0_DIR = 0x00;  
    
       P03 = 1;
     
    	return 0;
       }>
    

    Then I used eeprep tool and set above given options and created a EEPROM file with 3 bytes in header and then I used Hex2Bin to create Bin file and uplaoded that in 25AA320 EEPROM IC. But the Led doesn't glow. What's wrong? Please help

Children
No Data
Related