RP2040: Fix 10s delay before USB serial port became available on Windows
Since commit 196dd9, RP2040 ZuluSCSI_platform_msc.cpp function tud_msc_get_maxlun_cb()
was returning 0 if MSC mode was not active. The USB descriptors still show MSC
functionality so it is valid for the host to query the lun count.
This caused TU_VERIFY(maxlun); fail in tinyusb/src/class/msc/msc_device.c:378 which
then stalled the endpoint.
The endpoint stall caused a delay before the CDC serial port part of the USB compound
device was initialized.
Fixed by always returning at least 1 lun, and then reporting that lun as media not present.