Skip to content

Commit

Permalink
Disable RTR explicit. per pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
exothink committed Feb 6, 2021
1 parent 3573987 commit 16d1f79
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.pio
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"platformio.platformio-ide"
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ The default endian of the stm32f1 is little. This may cause problems on an exis
## About this Driver:
Written by John Eckert (k2ox).
BSD license, check license.txt for more information
All text above must be included in any redistribution
All text above must be included in any redistribution.

2 changes: 2 additions & 0 deletions eXoCAN.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "eXoCAN.h"

// vers 1.0.1 02/06/2021

void eXoCAN::begin(idtype addrType, int brp, BusType hw)
{
bool alt, wire;
Expand Down
1 change: 1 addition & 0 deletions eXoCAN.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

/*
eXoCAN.h 4/16/20
vers 1.0.1 02/06/2021
'eXoCAN' is working as a struck in the original 'eXoCAN.h' file
now working as a 'class'.
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type":"git",
"url":"https://github.com/exothink/eXoCAN.git"
},
"version":"1.0.0",
"version":"1.0.1",
"authors":
{
"name": "John Eckert",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name=eXoThink STM32F103 CAN Bus Library
keywords=CAN Bus, STM32DUINO, automobile, Blue Pill
description=Easy to use eXoCAN supports polling/interrupts, single wire and CAN bus xcvrs, 16/32b filters, STD/Extended IDs, listen only,...
version=1.0.0
version=1.0.1
author=John Eckert
maintainer=https://github.com/exothink
sentence=STM32duino CAN library for STM32F103.
Expand Down
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ platform = ststm32
board = bluepill_f103c8_128k
framework = arduino

lib_extra_dirs = ~/Documents/PlatformIO/mySTM32LIBS
;lib_extra_dirs = ~/Documents/PlatformIO/mySTM32LIBS 02/06/2021

0 comments on commit 16d1f79

Please sign in to comment.