mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 08:06:13 +01:00
change halSetup order
This commit is contained in:
parent
ef937dcacf
commit
10a0cfcccb
22
IODevice.cpp
22
IODevice.cpp
|
@ -32,7 +32,6 @@
|
||||||
|
|
||||||
// Link to halSetup function. If not defined, the function reference will be NULL.
|
// Link to halSetup function. If not defined, the function reference will be NULL.
|
||||||
extern __attribute__((weak)) void halSetup();
|
extern __attribute__((weak)) void halSetup();
|
||||||
extern __attribute__((weak)) void mySetup(); // Deprecated function name, output warning if it's declared
|
|
||||||
|
|
||||||
//==================================================================================================================
|
//==================================================================================================================
|
||||||
// Static methods
|
// Static methods
|
||||||
|
@ -47,7 +46,16 @@ extern __attribute__((weak)) void mySetup(); // Deprecated function name, outpu
|
||||||
// Create any standard device instances that may be required, such as the Arduino pins
|
// Create any standard device instances that may be required, such as the Arduino pins
|
||||||
// and PCA9685.
|
// and PCA9685.
|
||||||
void IODevice::begin() {
|
void IODevice::begin() {
|
||||||
// Initialise the IO subsystem
|
// Call user's halSetup() function (if defined in the build in myHal.cpp).
|
||||||
|
// The contents will depend on the user's system hardware configuration.
|
||||||
|
// The myHal.cpp file is a standard C++ module so has access to all of the DCC++EX APIs.
|
||||||
|
|
||||||
|
// This is done first so that the following defaults will detect an overlap and not
|
||||||
|
// create something that conflicts with the users vpin definitions.
|
||||||
|
if (halSetup)
|
||||||
|
halSetup();
|
||||||
|
|
||||||
|
// Initialise the IO subsystem defaults
|
||||||
ArduinoPins::create(2, NUM_DIGITAL_PINS-2); // Reserve pins for direct access
|
ArduinoPins::create(2, NUM_DIGITAL_PINS-2); // Reserve pins for direct access
|
||||||
// Predefine two PCA9685 modules 0x40-0x41
|
// Predefine two PCA9685 modules 0x40-0x41
|
||||||
// Allocates 32 pins 100-131
|
// Allocates 32 pins 100-131
|
||||||
|
@ -63,16 +71,6 @@ void IODevice::begin() {
|
||||||
dev->_begin();
|
dev->_begin();
|
||||||
}
|
}
|
||||||
_initPhase = false;
|
_initPhase = false;
|
||||||
|
|
||||||
// Check for presence of deprecated mySetup() function, and output warning.
|
|
||||||
if (mySetup)
|
|
||||||
DIAG(F("WARNING: mySetup() function should be renamed to halSetup()"));
|
|
||||||
|
|
||||||
// Call user's halSetup() function (if defined in the build in myHal.cpp).
|
|
||||||
// The contents will depend on the user's system hardware configuration.
|
|
||||||
// The myHal.cpp file is a standard C++ module so has access to all of the DCC++EX APIs.
|
|
||||||
if (halSetup)
|
|
||||||
halSetup();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Overarching static loop() method for the IODevice subsystem. Works through the
|
// Overarching static loop() method for the IODevice subsystem. Works through the
|
||||||
|
|
Loading…
Reference in New Issue
Block a user