The next commit will add this to a `.git-blame-ignore-revs` file which you can use to ignore this commit when running git blame. Simply run git blame --ignore-revs-file .git-blame-ignore-revs [...] Or configure git to persistently ignore the commit: git config blame.ignoreRevsFile .git-blame-ignore-revs
12 lines
188 B
C
12 lines
188 B
C
/*
|
|
FT_2018_STW_CAN.h
|
|
*/
|
|
|
|
#include "Arduino.h"
|
|
#include "DueTimer.h"
|
|
#include "due_can.h"
|
|
|
|
void Init_Can_0();
|
|
void Send_0x110();
|
|
void Receive_Can_0(CAN_FRAME *frame);
|
|
void update_LED(void); |