예제 #1
0
파일: CAN.cpp 프로젝트: AlessandroA/mbed
unsigned char CAN::tderror() {
    lock();
    int ret = can_tderror(&_can);
    unlock();
    return ret;
}
예제 #2
0
파일: CAN.cpp 프로젝트: 0x23/Smoothieware
unsigned char CAN::tderror() {
    return can_tderror(&_can);
}