Hi
Letter R determines the access to the register. You can use B letter and specify the part of the register you want to access or you can use R letter and access to the whole register.
For example:
ADC_1.MCR.B.PWDN = 1; //disable ADC_1 ...this code writes 1 only to the PWDN bit
ADC_1.MCR.R = 0x00000001; //this code also writes 1 to PWDN bit, but also writes zeros to the rest of the register
For more information, how to access registers, please look at the following Engineering Bulletin:
http://cache.nxp.com/files/32bit/doc/eng_bulletin/EB758.pdf?fsrch=1&sr=1&pageNum=1
About reference manual for MPC5775K it is under NDA at this time. If you have already signed an agreement, please contact the person who assisted you. If you have not signed an agreement, please contact your local NXP Distributor Salesperson or FAE for assistance.
For a listing of our distributors, refer to:
http://www.nxp.com/buy/distributor-network:DISTRIBUTORS
MPC5775K has four 12-bit SAR ADC modules and one 12-bit SD ADC. Letters N and P should mean Normal and Precise. It determines the precision of ADC channel.
The example you mean continuously convert voltage from output of the trimmer placed on MPC57xx Motherboard. It means you get new value in every sampling period. This value is sent to Etimer to determine the duty cycle of PWM signal.So the full signal is converted, because of scan mode of ADC.
I do not know what you mean by "graph of the sample table". I do not save the converted values to create any table. I send them directly, to Etimer in the ADC interrupt.
About sigma delta ADC, we do not have any example. SD ADC is part of AFE module, which is too complex to create some simple example.
Regards,
Martin