Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

//***************************************************************
//
// Module: CurieTimer
// Module: CurieTimerOne
//
//
// Notes:
Expand All @@ -35,7 +35,7 @@
//***************************************************************


#include "CurieTimer.h"
#include "CurieTimerOne.h"
#include <conf.h>

CurieTimer CurieTimerOne;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@

//***************************************************************
//
// File: CurieTimer.h
// File: CurieTimerOne.h
//
// Description:
// Class definitions for library CurieTimer.
// Class definitions for library CurieTimerOne.
//
// Notes:
//
Expand All @@ -38,8 +38,8 @@
//***************************************************************


#ifndef CurieTime_h
#define CurieTime_h
#ifndef CurieTimerOne_h
#define CurieTimerOne_h

#include <Arduino.h>
#include <aux_regs.h>
Expand Down Expand Up @@ -160,5 +160,5 @@ class CurieTimer
extern CurieTimer CurieTimerOne;


#endif // CurieTime_h
#endif // CurieTimerOne_h

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// intervals (speed).
//

#include "CurieTimer.h"
#include "CurieTimerOne.h"

// Uncomment the following statement to enable logging on serial port.
// #define SERIAL_PORT_LOG_ENABLE 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "CurieTimer.h"
#include "CurieTimerOne.h"

void setup() {
// Setup a PWM signal on pin 13, onboard LED, with a 25% duty cycle
Expand Down