Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small change to facilitate compilation in a Linux box #39

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion algorithm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
*/

#include "algorithm.h"
#include "arduino.h"
#include "Arduino.h"

//#if defined(ARDUINO_AVR_UNO)
//Arduino Uno doesn't have enough SRAM to store 100 samples of IR led data and red led data in 32-bit format
Expand Down
2 changes: 1 addition & 1 deletion algorithm.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
*/
#ifndef ALGORITHM_H_
#define ALGORITHM_H_
#include <arduino.h>
#include <Arduino.h>

#define true 1
#define false 0
Expand Down
2 changes: 1 addition & 1 deletion algorithm_by_RF.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
#ifndef ALGORITHM_BY_RF_H_
#define ALGORITHM_BY_RF_H_
#include <arduino.h>
#include <Arduino.h>

/*
* Settable parameters
Expand Down
2 changes: 1 addition & 1 deletion max30102.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
#ifndef MAX30102_H_
#define MAX30102_H_

#include <arduino.h>
#include <Arduino.h>
//#define I2C_WRITE_ADDR 0xAE
//#define I2C_READ_ADDR 0xAF
#define I2C_WRITE_ADDR 0x57 // 7-bit version of the above
Expand Down