I want to ask something related to the code related to the MPC5634M chip bootloader, so I upload it.
Looking at the link or attached file below, can I know what the code in the SSD_driver file in the MPC5634M_bootloader file does? It's difficult to look at the data sheet.
https://community.nxp.com/t5/MPC5xxx/MPC5674F-Bootload/m-p/1637095#M23401
#MPC5674 #bootloader # MPC5634M #SSD_driver
已解决! 转到解答。
I can remember that I already sent you the link to SSD drivers for MPC5674F. Then you can find user manual and API description here:
c:\Program Files (x86)\Freescale\Standard Software C90FL Driver v1.0.4\MPC5674_5676R\UM_C90FL_MM_SSD.pdf
The drivers are provided in pre-compiled form to avoid issues with compilers and also these files are usually used by flash programmers.
What it does - it just follows the procedures described in the reference manual like:
Regards,
Lukas
I can remember that I already sent you the link to SSD drivers for MPC5674F. Then you can find user manual and API description here:
c:\Program Files (x86)\Freescale\Standard Software C90FL Driver v1.0.4\MPC5674_5676R\UM_C90FL_MM_SSD.pdf
The drivers are provided in pre-compiled form to avoid issues with compilers and also these files are usually used by flash programmers.
What it does - it just follows the procedures described in the reference manual like:
Regards,
Lukas
Just install the drivers and you will find the manual in that folder:
https://www.nxp.com/webapp/Download?colCode=MPC5674F_C90FL_SSD_DRV
If you jump into this function, you will see only pure asm code. As we already discussed, this driver is provided in pre-compiled form without source files. So, the debugger does not have details about the source. It's better to only step over these functions.
Regards,
Lukas