Merge branch 'development' into prerelease-14.4.0

This commit is contained in:
Theo Arends 2024-12-11 10:13:41 +01:00
commit 74e741012c
2 changed files with 2 additions and 2 deletions

View File

@ -592,7 +592,7 @@ uint32_t MCP23xTemplateGpio(void) {
void MCP23xModuleInit(void) {
int32_t pins_needed = MCP23xTemplateGpio();
if (!pins_needed) {
AddLog(LOG_LEVEL_DEBUG, PSTR("MCP: Invalid template"));
AddLog(LOG_LEVEL_DEBUG_MORE, PSTR("MCP: Invalid template"));
return;
}

View File

@ -360,7 +360,7 @@ uint32_t PCA9557TemplateGpio(void) {
void PCA9557ModuleInit(void) {
int32_t pins_needed = PCA9557TemplateGpio();
if (!pins_needed) {
AddLog(LOG_LEVEL_DEBUG, PSTR("PCA: Invalid template"));
AddLog(LOG_LEVEL_DEBUG_MORE, PSTR("PCA: Invalid template"));
return;
}