This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Consulta de los CMSIS Drivers

I asked in the previous question, but they didn't answer me anymore, but I come back to the question without problems.

I asked if in this file I found system_samd21.h I can add code to modify the GCLK_MAIN

This is where I can add code to manipulate the frequency of GCLK_MAIN,  I tried to modify the frequency and I can't, on the contrary as the microphone got blocked I had to reset the microphone, that's my doubt.

And the other question is if the CMSIS DRIVER are compatible with the SAMD21 microchip(ATMEL) or where in this link: www.keil.com/.../index.html, or where I can consult the compatibility of the CMSIS DRIVER with the microchip that is my other doubt.

Thanks! and have a nice day

Translated with www.DeepL.com/Translator (free version)

Parents
  • The link provided by in your other question explains how to set the CPU clock speed for the SAMD21.

    The SAMD21 pack for the Keil MDK only includes headers for CMSIS drivers for SPI, UART, etc. It does not include implementations of those drivers. You have to make the implementations yourself, using the headers as a starting point.

Reply
  • The link provided by in your other question explains how to set the CPU clock speed for the SAMD21.

    The SAMD21 pack for the Keil MDK only includes headers for CMSIS drivers for SPI, UART, etc. It does not include implementations of those drivers. You have to make the implementations yourself, using the headers as a starting point.

Children