Skip to content

Commit

Permalink
Version 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pierremolinaro committed Mar 22, 2024
1 parent 8c3c4d1 commit 53748d7
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/LoopBackDemo/LoopBackDemo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ static const uint32_t DESIRED_BIT_RATE = 1000UL * 1000UL ; // 1 Mb/s
//----------------------------------------------------------------------------------------

void setup () {
//--- Switch on builtin led
//--- Switch on builtin led
pinMode (LED_BUILTIN, OUTPUT) ;
digitalWrite (LED_BUILTIN, HIGH) ;
//--- Start serial
Expand Down
Binary file modified extras/acan-esp32.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ACAN_ESP32
version=2.0.0
version=2.0.1
author=Mohamed Irfanulla, Pierre Molinaro
maintainer=Pierre Molinaro <[email protected]>
sentence=An ESP32 CAN Driver.
Expand Down
3 changes: 2 additions & 1 deletion src/ACAN_ESP32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

#include <ACAN_ESP32.h>

#include <esp_private/periph_ctrl.h>
#include <esp_private/periph_ctrl.h> // For ESP32 board manager
//#include <driver/periph_ctrl.h> // For M5Stack board manager

//----------------------------------------------------------------------------------------
// ESP32 Critical Section
Expand Down
2 changes: 1 addition & 1 deletion src/ACAN_ESP32.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include <ACAN_ESP32_CANRegisters.h>
#include <ACAN_ESP32_Settings.h>
#include <CANMessage.h>
#include <ACAN_ESP32_CANMessage.h>
#include <ACAN_ESP32_Buffer16.h>
#include <ACAN_ESP32_AcceptanceFilters.h>

Expand Down
2 changes: 1 addition & 1 deletion src/ACAN_ESP32_Buffer16.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

//----------------------------------------------------------------------------------------

#include <CANMessage.h>
#include <ACAN_ESP32_CANMessage.h>

//----------------------------------------------------------------------------------------

Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion src/ACAN_ESP32_Settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
//--- For getting getApbFrequency function declaration
#ifdef ARDUINO
#include <Arduino.h>
// #include <esp32-hal-cpu.h>
#endif

//----------------------------------------------------------------------------------------
Expand Down

0 comments on commit 53748d7

Please sign in to comment.