Skip to content

Commit

Permalink
[Meta]: Addressed Arduino Library Linter Warnings
Browse files Browse the repository at this point in the history
Renamed isobus.hpp, shorten library name based on linter comments.
  • Loading branch information
ad3154 committed Sep 10, 2023
1 parent f2140d0 commit b419d25
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 23 deletions.
2 changes: 1 addition & 1 deletion examples/VirtualTerminal/VirtualTerminal.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <isobus.hpp>
#include <AgIsoStack.hpp>

#include "ObjectPool.cpp"

Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name=AgIsoStack-Arduino
name=AgIsoStack
version=0.1.0
license=MIT
author=Adrian Del Grosso <[email protected]>
Expand All @@ -7,6 +7,6 @@ sentence=A free ISOBUS (ISO11783) and J1939 CAN Stack for Teensy.
paragraph=Includes ISOBUS virtual terminal client, task controller client, and transport layer functionality. Based on the CMake AgIsoStack++ at https://github.com/Open-Agriculture/AgIsoStack-plus-plus.
category=Communication
architectures=teensy
includes=isobus.hpp
includes=AgIsoStack.hpp
url=https://github.com/Open-Agriculture/AgIsoStack-Arduino

16 changes: 0 additions & 16 deletions src/AgIsoStack-Arduino.hpp

This file was deleted.

8 changes: 4 additions & 4 deletions src/isobus.hpp → src/AgIsoStack.hpp
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/*******************************************************************************
** @file isobus.hpp
** @file AgIsoStack.hpp
** @author Automatic Code Generation
** @date September 09, 2023 at 11:11:41
** @brief Includes all important files in the AgIsoStack library.
**
** Copyright 2023 The AgIsoStack++ Developers
*******************************************************************************/

#ifndef ISOBUS_HPP
#define ISOBUS_HPP
#ifndef AG_ISO_STACK_HPP
#define AG_ISO_STACK_HPP

#include <can_address_claim_state_machine.hpp>
#include <can_badge.hpp>
Expand Down Expand Up @@ -58,4 +58,4 @@
#include <system_timing.hpp>
#include <to_string.hpp>

#endif // ISOBUS_HPP
#endif // AG_ISO_STACK_HPP

0 comments on commit b419d25

Please sign in to comment.