diff --git a/platform/pin_utils.c b/platform/pin_utils.c index 2278d8f..3df83c7 100644 --- a/platform/pin_utils.c +++ b/platform/pin_utils.c @@ -266,7 +266,7 @@ void deinit_unit_pins(Unit *unit) { for (uint32_t rsc = R_PA0; rsc <= R_PF15; rsc++) { if (RSC_IS_HELD(unit->resources, rsc)) { - dbg("Freeing pin %s", rsc_get_name((Resource)rsc)); +// dbg("Freeing pin %s", rsc_get_name((Resource)rsc)); GPIO_TypeDef *port = port_periphs[(rsc-R_PA0) / 16]; uint32_t ll_pin = ll_pins[(rsc-R_PA0)%16]; LL_GPIO_SetPinMode(port, ll_pin, LL_GPIO_MODE_ANALOG); diff --git a/platform/plat_compat.h b/platform/plat_compat.h index d81dd78..cd6345e 100644 --- a/platform/plat_compat.h +++ b/platform/plat_compat.h @@ -22,7 +22,7 @@ #define FLASH_SAVE_BUF_LEN 128 // Static buffer for saving to flash -#define MSG_QUE_SLOT_SIZE 32 // FIXME this should be possible to lower, but there's some bug with bulk transfer / INI parser +#define MSG_QUE_SLOT_SIZE 64 // FIXME this should be possible to lower, but there's some bug with bulk transfer / INI parser #define RX_QUE_CAPACITY 8 // TinyFrame rx queue size (64 bytes each) #define TF_MAX_PAYLOAD_RX 512 // TF max Rx payload