I have some trouble when jumping from my bootloader to an application on a CC2652. When I try to jump I end up in FaultISR from where I can see that the BFARVALID and PRECISERR bits are set in the CPU_SCS -> CFSR register. The value in BFAR is 0x00400000 but I can not see what is happening at this address in the disassembly view provided by Code Composer Studio. I do not know how to further debug this problem or how to continue. I created a github repository with a small version of my project: 
In this project I use UART and a python script to send a test project in Intel Hex format from the PC to the device.
I am trying to jump to the application using this piece of code:
__asm(" movw r0, #0x0000");
__asm(" movt r0, #0x0040");
__asm(" ldr sp, [r0, #0]");
__asm(" ldr pc, [r0, #4]");