Hi there, I'm trying to program an .srec file to the p-flash of an S32K144 from a bootloader using the c90tfs_flash_driver. Actually it works pretty well. Nevertheless, I have noticed that usually the last line of the .srec file isn't programmed into the flash. It's because the data lenght of that line, which is sometimes 4 bytes, is misalligned with the p-flash block size, which are 8 bytes and the function FlashProgramm returns FTFx_ERR_SIZE . Using the FlashProgram function which it makes use of the Program Phrase command (0x07) instead of the Program longword(0x06). After doing some research within the RM of the S32k144, I realised it doesn't show "program longword" as an available command in this family of MCU. So my questions are, is it possible to program 4 bytes into the p-flash in this MCU? is the program longword command supported in this device?