Subversion Repositories HomeAutomation

Rev

Rev 144 | Blame | Last modification | View Log | SVN | RSS feed

  1. /**
  2.  * CAN Test. This program sends a CAN message once every second. The ID of the
  3.  * message is increased each time for testing purposes.
  4.  *
  5.  * @date    2006-11-21
  6.  * @author  Jimmy Myhrman
  7.  *  
  8.  */
  9.  
  10. /*-----------------------------------------------------------------------------
  11.  * Includes
  12.  *---------------------------------------------------------------------------*/
  13. /* system files */
  14. #include <avr/io.h>
  15. #include <avr/interrupt.h>
  16. #include <avr/wdt.h>
  17. #include <stdio.h>
  18. /* lib files */
  19. #include <can.h>
  20. #include <uart.h>
  21. #include <timebase.h>
  22.  
  23.  
  24. /*-----------------------------------------------------------------------------
  25.  * Main Program
  26.  *---------------------------------------------------------------------------*/
  27. int main(void) {
  28.     Timebase_Init();
  29.     Uart_Init();
  30.     sei();
  31.    
  32.     printf("\n------------------------------------------------------------\n");
  33.     printf(  "   CAN Test: Periodic Transmission\n");
  34.     printf(  "------------------------------------------------------------\n");
  35.    
  36.     printf("CanInit...");
  37.     if (Can_Init() != CAN_OK) {
  38.         printf("FAILED!\n");
  39.     }
  40.     else {
  41.         printf("OK!\n");
  42.     }
  43.    
  44.     uint32_t timeStamp = 0;
  45.    
  46.     Can_Message_t txMsg;
  47.     Can_Message_t rxMsg;
  48.     txMsg.DataLength = 8;
  49.     txMsg.Data.bytes[0] = 7;
  50.     txMsg.Id = 0;
  51.     txMsg.RemoteFlag = 0;
  52.     txMsg.ExtendedFlag = 1;
  53.    
  54.     /* main loop */
  55.     while (1) {
  56.         /* service the CAN routines */
  57.         Can_Service();
  58.        
  59.         /* send CAN message and check for CAN errors once every second */
  60.         if (Timebase_PassedTimeMillis(timeStamp) >= 1000) {
  61.             timeStamp = Timebase_CurrentTime();
  62.             /* send txMsg */
  63.             txMsg.Id++;
  64.             Can_Send(&txMsg);
  65.         }
  66.        
  67.         /* check if any messages have been received */
  68.         while (Can_Receive(&rxMsg) == CAN_OK) {
  69.             printf("MSG Received: ID=%lx, DLC=%u, EXT=%u, RTR=%u, ", rxMsg.Id, (uint16_t)(rxMsg.DataLength), (uint16_t)(rxMsg.ExtendedFlag), (uint16_t)(rxMsg.RemoteFlag));
  70.             printf("data={ ");
  71.             for (uint8_t i=0; i<rxMsg.DataLength; i++) {
  72.                 printf("%x ", rxMsg.Data.bytes[i]);
  73.             }
  74.             printf("}\n");
  75.         }
  76.     }
  77.    
  78.     return 0;
  79. }
  80.