Hi all,
Where is the EPIBAUD register? I tried to search this register name in all the files and couldn't find it.
Thank you,
Marc
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi all,
Where is the EPIBAUD register? I tried to search this register name in all the files and couldn't find it.
Thank you,
Marc
Hi Marc,
This register (name is bit different) defined in "hw_epi.h" file, inside MWare\inc folder.
------------------------------
#define EPI_O_BAUD 0x00000004 // EPI Main Baud Rate
//*****************************************************************************
// The following are defines for the bit fields in the EPI_O_BAUD register.
//*****************************************************************************
#define EPI_BAUD_COUNT1_M 0xFFFF0000 // Baud Rate Counter 1
#define EPI_BAUD_COUNT0_M 0x0000FFFF // Baud Rate Counter 0
#define EPI_BAUD_COUNT1_S 16
#define EPI_BAUD_COUNT0_S 0
------------------------------
Regards,
Vivek Singh