Rename fanspeeeed to fanspeed
This commit is contained in:
parent
b858d29ce8
commit
458ae00f24
@ -1,5 +1,5 @@
|
||||
#include "command-handler.h"
|
||||
#include "fan_speeeed.h"
|
||||
#include "fan_speed.h"
|
||||
|
||||
// Initialize empty, global command context
|
||||
volatile command_context_t context = {UNKNOWN_COMMAND, SRC_NONE, FAN_NONE,
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#include "fan_speeeed.h"
|
||||
#include "fan_speed.h"
|
||||
#include "uart.h"
|
||||
|
||||
uint16_t timer_period_ms = 1;
|
||||
@ -26,6 +26,9 @@
|
||||
// Fan history variables
|
||||
volatile uint16_t fan1_history[512] = {0};
|
||||
volatile uint16_t fan2_history[512] = {0};
|
||||
// Fan history index variable
|
||||
volatile uint16_t fan1_history_index = 0;
|
||||
volatile uint16_t fan2_history_index = 0;
|
||||
|
||||
// Default config is 500ms sample rate
|
||||
volatile config_t config = {500};
|
||||
|
||||
@ -6,11 +6,11 @@
|
||||
projectFiles="true">
|
||||
<itemPath>uart.h</itemPath>
|
||||
<itemPath>voltage.h</itemPath>
|
||||
<itemPath>fan_speeeed.h</itemPath>
|
||||
<itemPath>themistor-temp.h</itemPath>
|
||||
<itemPath>command-handler.h</itemPath>
|
||||
<itemPath>eeprom.h</itemPath>
|
||||
<itemPath>i2c.h</itemPath>
|
||||
<itemPath>fan_speed.h</itemPath>
|
||||
</logicalFolder>
|
||||
<logicalFolder name="ExternalFiles"
|
||||
displayName="Important Files"
|
||||
@ -28,11 +28,11 @@
|
||||
<itemPath>main.c</itemPath>
|
||||
<itemPath>uart.c</itemPath>
|
||||
<itemPath>voltage.c</itemPath>
|
||||
<itemPath>fan_speeeed.c</itemPath>
|
||||
<itemPath>thermistor-temp.c</itemPath>
|
||||
<itemPath>command-handler.c</itemPath>
|
||||
<itemPath>i2c.c</itemPath>
|
||||
<itemPath>eeprom.c</itemPath>
|
||||
<itemPath>fan_speed.c</itemPath>
|
||||
</logicalFolder>
|
||||
</logicalFolder>
|
||||
<projectmakefile>Makefile</projectmakefile>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user