Posted on May 17, 2011 at 13:05It seems that I`m doing everything right. But could You tell me is there some way to disable all interrupts like NVIC_DeInit(), which used to be in StdPeriphLibrary 2.0 and in 3.1.2 is missing:(?
Posted on May 17, 2011 at 13:05Could You tell me: - how to disable all interrupts including fault handlers (I tried to do it with std_PeriphLibrary 3.1.2 but with no effects). In user application I can`t make interrupts firing, and I think it`s the ...
Posted on May 17, 2011 at 13:05Yes, I`m doing two things: a) setting the vector table with offset in flash: NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x2000); b) adding an offset in linker script: MEMORY { RAM (RWX) : ORIGIN = 0x20000000+0, LENGTH = ...
Posted on May 17, 2011 at 13:05I've added __asm volatile ('' CPSID I \n''); instruction before initialize the stuckpointer and it's still not working. The hard fault exeption is being thrown when executing blx r3 instruction, no jump is being done. ...