mbed library sources, include can_api for nucleo-f091rc

Dependents:   CanNucleoF0_example

Fork of mbed-src by mbed official

Revision:
644:612d6aa9e717
Parent:
637:909ea77f86f8
--- a/common/CAN.cpp	Thu Dec 17 03:11:41 2015 +0000
+++ b/common/CAN.cpp	Mon Jan 04 06:10:26 2016 +0000
@@ -24,6 +24,8 @@
 CAN::CAN(PinName rd, PinName td) : _can(), _irq() {
     can_init(&_can, rd, td);
     can_irq_init(&_can, (&CAN::_irq_handler), (uint32_t)this);
+    
+    printf("CAN::CAN\r\n");
 }
 
 CAN::~CAN() {