Compare commits

...

5 Commits

6 changed files with 7 additions and 15 deletions

View File

@@ -2,16 +2,10 @@
All Rights Reserved
Copyright (c) 2024 Madcow Software
Copyright (c) 2024 Madcow Software
Copyright (c) 2024 Carlos Krieg
THE CONTENTS OF THIS PROJECT ARE PROPRIETARY AND CONFIDENTIAL.
UNAUTHORIZED COPYING, TRANSFERRING OR REPRODUCTION OF THE
CONTENTS OF THIS PROJECT, VIA ANY MEDIUM IS STRICTLY PROHIBITED.
The receipt or possession of the source code and/or any parts
thereof does not convey or imply any right to use them for any
purpose other than the purpose for which they were provided to you.
LICENSE UNDETERMINED FOR NOW
The software is provided "AS IS", without warranty of any kind,
express or implied, including but not limited to the warranties of
@@ -23,4 +17,4 @@ connection with the software or the use or other dealings in the
software.
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the software.
included in all copies or substantial portions of the software.

Submodule opt/tools deleted from 16fb890c1e

Submodule opt/webgui deleted from 2e1b57767c

View File

@@ -226,7 +226,7 @@ static void WriteRaw(int addr, byte data)
// Wait until ready
while (EECR & BIT(EEPE));
// The EEPROM Address Registers EEARH and
// The EEPROM Address Registers - EEARH and
// EEARL specify the EEPROM address in the
// 512/1K/2K/4Kbytes EEPROM space. The EEPROM
// data bytes are addressed linearly between 0

View File

@@ -97,7 +97,7 @@ bool WDT_HasTriggered(void)
// which reset source caused an MCU reset.
// 7 6 5 4 3 2 1 0
// - - JTRF WDRF BORF EXTRF PORF
// - - - JTRF WDRF BORF EXTRF PORF
// Is watchdog reset flag set?
isreset = ((MCUSR & BIT(WDRF)) != 0);
@@ -128,7 +128,7 @@ void WDT_Disable(void)
// See macro in watchdog.h
void WDT_Reset(void)
{
// The WDR Watchdog Reset instruction resets the
// The WDR - Watchdog Reset - instruction resets the
// watchdog timer. The Watchdog Timer is also reset
// when it is disabled and when a chip reset occurs.

View File

@@ -160,7 +160,7 @@ static void Update(void)
// TODO: PID control for fan pulse-width modulation?
// The dead band represents the lower and upper limits
// of the error between which the controller doesnt
// of the error between which the controller doesn't
// react.
state = S_IDLE;