Skip to content

Commit

Permalink
Fixed typo in pins file and case issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gloomyandy committed Mar 1, 2020
1 parent d961eec commit 742bab2
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/LPC/BoardConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include "RepRapFirmware.h"
#include "GCodes/GCodeResult.h"
#include "sd_mmc.h"
#include "SharedSPI.h"
#include "SharedSpi.h"

#include "Platform.h"

Expand Down
2 changes: 1 addition & 1 deletion src/LPC/Boards/AzsmzMini.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef AZSMZ_MINI_H
#define AZSMZ_MINI_H

#include "../PINS_LPC.h"
#include "../Pins_LPC.h"

// List of assignable pins and their mapping from names to MPU ports. This is indexed by logical pin number.
// The names must match user input that has been concerted to lowercase and had _ and - characters stripped out.
Expand Down
2 changes: 1 addition & 1 deletion src/LPC/Boards/AzteegX5Mini.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef AZTEEGX5MINI_H
#define AZTEEGX5MINI_H

#include "../PINS_LPC.h"
#include "../Pins_LPC.h"

// List of assignable pins and their mapping from names to MPU ports. This is indexed by logical pin number.
// The names must match user input that has been concerted to lowercase and had _ and - characters stripped out.
Expand Down
4 changes: 2 additions & 2 deletions src/LPC/Boards/BIQU_SKR.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef BIQU_SKR_H
#define BIQU_SKR_H

#include "../PINS_LPC.h"
#include "../Pins_LPC.h"

// List of assignable pins and their mapping from names to MPU ports. This is indexed by logical pin number.
// The names must match user input that has been concerted to lowercase and had _ and - characters stripped out.
Expand Down Expand Up @@ -169,7 +169,7 @@ constexpr PinEntry PinTable_BIQU_SKR_v1_4[] =
{P1_26, PinCapability::rwpwm, "e0stop,e0det"},
{P1_25, PinCapability::rwpwm, "e1stop,e1det"},
{P1_0, PinCapability::rwpwm, "pwrdet,P1.0"},
{P0.10, PinCapability::rwpwm, "probe"},
{P0_10, PinCapability::rwpwm, "probe"},

//Heaters and Fans (Big and Small Mosfets}
{P2_5, PinCapability::wpwm, "bed,hbed" },
Expand Down
2 changes: 1 addition & 1 deletion src/LPC/Boards/Generic.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef GENERIC_H
#define GENERIC_H

#include "../PINS_LPC.h"
#include "../Pins_LPC.h"


// List of assignable pins and their mapping from names to MPU ports. This is indexed by logical pin number.
Expand Down
2 changes: 1 addition & 1 deletion src/LPC/Boards/MKSSBase.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef MKSSBASE_H
#define MKSSBASE_H

#include "../PINS_LPC.h"
#include "../Pins_LPC.h"


// List of assignable pins and their mapping from names to MPU ports. This is indexed by logical pin number.
Expand Down
2 changes: 1 addition & 1 deletion src/LPC/Boards/Mbed.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef MBED_H
#define MBED_H

#include "../PINS_LPC.h"
#include "../Pins_LPC.h"


// List of assignable pins and their mapping from names to MPU ports. This is indexed by logical pin number.
Expand Down
2 changes: 1 addition & 1 deletion src/LPC/Boards/ReArm.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef REARM_H
#define REARM_H

#include "../PINS_LPC.h"
#include "../Pins_LPC.h"

// List of assignable pins and their mapping from names to MPU ports. This is indexed by logical pin number.
// The names must match user input that has been concerted to lowercase and had _ and - characters stripped out.
Expand Down
2 changes: 1 addition & 1 deletion src/LPC/Boards/Smoothieboard.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef SMOOTHIEBOARD_H
#define SMOOTHIEBOARD_H

#include "../PINS_LPC.h"
#include "../Pins_LPC.h"

// List of assignable pins and their mapping from names to MPU ports. This is indexed by logical pin number.
// The names must match user input that has been concerted to lowercase and had _ and - characters stripped out.
Expand Down

0 comments on commit 742bab2

Please sign in to comment.