Fix correct debug type

Fix correct debug type
This commit is contained in:
Theo Arends 2019-08-09 16:48:53 +02:00
parent 618ad75b64
commit d7e80b4bb6
1 changed files with 5 additions and 5 deletions

View File

@ -251,7 +251,7 @@ void solaxX1_Update(void) // Every Second
bool data_ready = solaxX1_RS485ReceiveReady();
DEBUG_DRIVER_LOG(PSTR("SX1: queryOffline: %d , queryOfflineSend: %d, hasAddress: %d, inverterAddressSend: %d, solaxX1_send_retry: %d"),
DEBUG_SENSOR_LOG(PSTR("SX1: queryOffline: %d , queryOfflineSend: %d, hasAddress: %d, inverterAddressSend: %d, solaxX1_send_retry: %d"),
queryOffline, queryOfflineSend, hasAddress, inverterAddressSend, solaxX1_send_retry);
if (!hasAddress && (data_ready || solaxX1_send_retry == 0))
@ -265,7 +265,7 @@ void solaxX1_Update(void) // Every Second
uint8_t error = solaxX1_RS485Receive(value);
if (error)
{
DEBUG_DRIVER_LOG(PSTR("SX1: Address confirmation response CRC error"));
DEBUG_SENSOR_LOG(PSTR("SX1: Address confirmation response CRC error"));
}
else
{
@ -284,7 +284,7 @@ void solaxX1_Update(void) // Every Second
uint8_t error = solaxX1_RS485Receive(value);
if (error)
{
DEBUG_DRIVER_LOG(PSTR("SX1: Query Offline response CRC error"));
DEBUG_SENSOR_LOG(PSTR("SX1: Query Offline response CRC error"));
}
else
{
@ -349,7 +349,7 @@ void solaxX1_Update(void) // Every Second
uint8_t error = solaxX1_RS485Receive(value);
if (error)
{
DEBUG_DRIVER_LOG(PSTR("SX1: Data response CRC error"));
DEBUG_SENSOR_LOG(PSTR("SX1: Data response CRC error"));
}
else
{
@ -460,7 +460,7 @@ void solaxX1_Update(void) // Every Second
void solaxX1Init(void)
{
AddLog_P(LOG_LEVEL_DEBUG, PSTR("Solax X1 Inverter Init"));
DEBUG_DRIVER_LOG(PSTR("SX1: RX pin: %d, TX pin: %d"), pin[GPIO_SOLAXX1_RX], pin[GPIO_SOLAXX1_TX]);
DEBUG_SENSOR_LOG(PSTR("SX1: RX pin: %d, TX pin: %d"), pin[GPIO_SOLAXX1_RX], pin[GPIO_SOLAXX1_TX]);
solaxX1_Init = 0;
if ((pin[GPIO_SOLAXX1_RX] < 99) && (pin[GPIO_SOLAXX1_TX] < 99))
{