Question
What is DTB0?
I was looking at the BLE_Sync sample code, when I stumbled upon something I couldn't find documented.
void DTB_Init(void)
{
/* Enable the peripheral clock of GPIO Port A */
RCC->AHBENR |= 1<<3;
/* PA1 tx/rx req*/
GPIOA->MODER |= (2<<2); // Alternate Function Mode
GPIOA->AFR[0] |= (7<<4); // Alternate Function Mode 7
/*Access to DTB0_DIG_ENG through RRM register starting from offest 0x100*/
RRM->DTB0_DIG_ENG = 0x0D; /*Enabling Blue #0 mode*/
}What is exactly DTB0?
Thanks!
