Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/cral/commit/0cc5fc91071d2c87eb6059d3c974d462e8530d40?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
11 additions and
3 deletions
@ -107,6 +107,7 @@ class Wiz810MjDevice {
private:
private:
void _init(void);
void _init(void);
byte * _packBuffer(byte b0, byte b1, byte b2, byte b3);
int _resetPin;
int _resetPin;
@ -158,7 +159,7 @@ void Wiz810MjDevice::_init(void) {
sysinit(0x55, 0x55);
sysinit(0x55, 0x55);
}
}
void Wiz810MjDevice::setIp (byte b0, byte b1, byte b2, byte b3) {
byte * Wiz810MjDevice::_packBuffer (byte b0, byte b1, byte b2, byte b3) {
/*
/*
*/
*/
@ -167,7 +168,14 @@ void Wiz810MjDevice::setIp(byte b0, byte b1, byte b2, byte b3) {
_scratchBuffer[2] = b2;
_scratchBuffer[2] = b2;
_scratchBuffer[3] = b3;
_scratchBuffer[3] = b3;
setSIPR(_scratchBuffer);
return _scratchBuffer;
}
void Wiz810MjDevice::setIp(byte b0, byte b1, byte b2, byte b3) {
/*
*/
setSIPR(_packBuffer(b0, b1, b2, b3));
}
}
/* ----------------------- */
/* ----------------------- */