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.

ADC share with System CPU and Sensor Controller on CC1310 (No OS)



Hello,

There is documentation regarding the shared peripheral usage on the SC side 

What is required by the System CPU to obtain the ADC peripheral in secured manner ?

Thanks, 

Wiz

  • When the ADC driver is ready (at the moment June time frame) this should be handled in the driver.

    To share the ADC between the CM3 and the SCE you can use a semaphore, see aux_smph.h in the driverlib folder. AUX SMPH2 is tied to the ADC.

    - Why do you want to run without a OS? In most cases you will get up and running faster with TI-RTOS since the OS handles the resources.
    - Why do you want to run the ADC both from the CM3 and the SCE? Normally the most efficient would be to run it from the SCE.
  • OS overhead is sometimes to much for a simple device with modest requirements ...

    Thanks.