On LPC55S69 the Peripheral Config tool for the FlexComm interface allows you to either not "Enable priority initialization", or to enable it and set a value.
I can see from the reference manual that permissible values are 0-7 and the relevant value is written to a specific section of the NVIC->IPRn registers.
However when writing the priority there doesn't seem to be any "enable" or "disable" for the priority, it just literally writes the priority value (0-7) to the register location, so presumably this means that the prioritization is always enabled, and the 'enable or not' shown in the config tool is just a UI thing...
If that is the case, and since ALL the IPR registers have reset value of 0, then does this mean that everything is set to the highest priority by default, and your only option is to de-priorities certain interrupts?
So if I actually want 2 interrupts to have higher priority than the rest, what I actually need to do is deprioritise everything else (that has interrupt enabled?)