Buongiorno a tutti,
sto provando la comunicazione seriale Can Bus dell'Arduino R4 Minima ( sia Connessioni Hardware che Prog. Software ), secondo documentazione fornita dal sito ufficiale: https://docs.arduino.cc/tutorials/uno-r4-minima/can.
Una volta compilato e caricato il progetto su Aduino, la trasmissione del messaggio Can non avviene fintantoché non si avvia il Serial Monitor dall' IDE di Arduino ( sto usando la versione 2.2.1 ). Ho provato a creare uno Sketch con sending time generato da Timer Interrupt ma non cambia, la trasmissione dei messaggi Can avvengono solo dopo aver avviato il Serial Monitor dall'IDE.
Lo sketch è il seguente:
/*
CANWrite
Write and send CAN Bus messages
See the full documentation here:
https://docs.arduino.cc/tutorials/uno-r4-wifi/can
*/
/**************************************************************************************
* INCLUDE
**************************************************************************************/
#include <Arduino_CAN.h>
/**************************************************************************************
* CONSTANTS
**************************************************************************************/
static uint32_t const CAN_ID = 0x20;
/**************************************************************************************
* SETUP/LOOP
**************************************************************************************/
void setup()
{
Serial.begin(115200);
while (!Serial) { }
if (!CAN.begin(CanBitRate::BR_250k))
{
Serial.println("CAN.begin(...) failed.");
for (;;) {}
}
}
static uint32_t msg_cnt = 0;
void loop()
{
/* Assemble a CAN message with the format of
* 0xCA 0xFE 0x00 0x00 [4 byte message counter]
*/
uint8_t const msg_data[] = {0xCA,0xFE,0,0,0,0,0,0};
memcpy((void *)(msg_data + 4), &msg_cnt, sizeof(msg_cnt));
CanMsg const msg(CanStandardId(CAN_ID), sizeof(msg_data), msg_data);
/* Transmit the CAN message, capture and display an
* error core in case of failure.
*/
if (int const rc = CAN.write(msg); rc < 0)
{
Serial.print ("CAN.write(...) failed with error code ");
Serial.println(rc);
for (;;) { }
}
/* Increase the message counter. */
msg_cnt++;
/* Only send one message per second. */
delay(1000);
}
Come mai accade questo ?
Grazie, un saluto a tutti.