User Activity

Hi guys,i have the following problem. I configure the interrupts as follow.INTC.BCR.R = 0; INTC.IACKR[0].R = (uint32_t)&VectorTable[0]; INTC.CPR[0].B.PRI = 0;   // enable interrupts __asm__ volatile ("wrteei 1" : : : "memory");After that, i configure...
Hi Guys,I configure the UTEST Area of the DCF Records and i ask me, what the meaning of XOSC ALC_DIS is.Could anyone explain it to me? best regardsDavid
Posted on January 05, 2018 at 10:41Hi Guys,i'm confused about the Safety Manual from the SPC57 µC.In section 3.2.4 Dual core lockstep mode stands, that i have to check MC_ME_CS[S_CORE1] and MC_ME_CS[S_CORE2]. I don't know what is meant by S_CORE2. ...
Posted on November 17, 2017 at 09:29Hi guys,i want to use the swt.My Init Code: SWT.SR.R = 0xC520; SWT.SR.R = 0xD928;while (SWT.CR.B.SLK == 0x1);SWT.TO.R = 0x0F42400; SWT.CR.R = 0xFF00014F;My Service Sequence:SWT.SR.B.WSC = 0xA602; SWT.SR.B.WSC = 0x...
Posted on October 06, 2017 at 11:31Hi guys,i tryed to use the CRC Modul with DMA Access but it doesn't work.My first step is to configure the DMA Channel.DMA.TCD[3].SSIZE = 2 /** 4 Bytes **/DMA.TCD[3].DSIZE = 4DMA.TCD[3].SOFF = 4DMA.TCD[3].DOFF = 0D...