Hello, i'm trying to get usbd_msc example to work on custom, test pcb, with Microchip SST26VF064B flash chip (SDK version 16). As previously advised, i have redefined NRFX_QSPI_PIN_xxx in sdk_config.h, as i want to use different I/O pins for QSPI, but it seems that most of sdk_config.h constants are undefined/redefined in ../../../../../../integration/nrfx/legacy/apply_old_config.h, so it's useless to define anything there, as all defines are wiped by apply_old_config.h. I have managed to set pins by modifying constants in components/boards/pca10056.h, but i don't think this is proper way to do this.
I suspect that my problem with setting up RTT backend for NRF_LOG in this example (can't get RTT output from NRF_LOG function no matter what i try, while my other programs produce RTT logging without problems) is also related to the same thing - RTT settings in sdk_config.h being overwriten. Why sdk_config.h is overriden by apply_old_config.h, and how to properly change constants for usbd_msc example?
WM