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

Has any one tried this method?"programming without cmsis"

Hey guys.
I'm trying to lean how to work with stm32f2 series of microcontrollers.I just was very successful in lpc1768 and i programmed every thing i wanted using the user manual and the registers.I just built my project then added the start up file and just programming it by programming the registers.But in stm series i did this and it did'nt work.
Has any one have experience on programming this series without using cmsis?

Parents
  • The chip neither knows nor cares how you write your source code:

    - with/without CMSIS;

    - with/without HAL;

    - with/without SPL;

    - C / Assembler / whatever.

    If you want to write at the register level, then it's up to you to carefully study all the documentation and ensure that you are using all the registers correctly, in the correct order, etc, ...

    If it's not working, then you're just going to have to get down and debug it to find what you've done wrong.

Reply
  • The chip neither knows nor cares how you write your source code:

    - with/without CMSIS;

    - with/without HAL;

    - with/without SPL;

    - C / Assembler / whatever.

    If you want to write at the register level, then it's up to you to carefully study all the documentation and ensure that you are using all the registers correctly, in the correct order, etc, ...

    If it's not working, then you're just going to have to get down and debug it to find what you've done wrong.

Children