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

Error 65

Hi dears
I used STM32F746BG in my project, my Keil is V5, when I did debug and simulator said :
error 65: access violation at 0x40023800 : no 'read' permission
could you help me haw can I Solve the problem.
Thank you.

Parents
  • Ok, so the simulator is going to provide you with a CPU, but no emulation of the peripheral hardware attached to the core. Any time you get "Error 65" it means there is no hardware emulation for the peripheral you are touching. Remove the code which is dependent on peripheral hardware, and test the code which is not.

    You will *need* to get a NUCLEO, DISCO or EVAL board with the target device you want to use.

    You seem to have a very shallow grasp of the issue here, perhaps you work with someone who can explain in terms you can understand?

Reply
  • Ok, so the simulator is going to provide you with a CPU, but no emulation of the peripheral hardware attached to the core. Any time you get "Error 65" it means there is no hardware emulation for the peripheral you are touching. Remove the code which is dependent on peripheral hardware, and test the code which is not.

    You will *need* to get a NUCLEO, DISCO or EVAL board with the target device you want to use.

    You seem to have a very shallow grasp of the issue here, perhaps you work with someone who can explain in terms you can understand?

Children