Skip to content

Commit

Permalink
commit for compile
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-adam committed Apr 16, 2018
1 parent 85716ca commit 9067359
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions inc/driver-models/AbstractButton.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,13 @@ namespace codal

/**
* Enables this button.
* Buttons are normally created in an enabled state, but use this funciton to re-enable a previously disabled button.
* Buttons are normally created in an enabled state, but use this function to re-enable a previously disabled button.
*/
void enable();

/**
* Disable this button.
* Buttons are normally created in an enabled state. Use this funciton to disable this button.
* Buttons are normally created in an enabled state. Use this function to disable this button.
*/
void disable();

Expand Down
2 changes: 1 addition & 1 deletion inc/driver-models/Compass.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ namespace codal

/**
* Poll to see if new data is available from the hardware. If so, update it.
* n.b. it is not necessary to explicitly call this funciton to update data
* n.b. it is not necessary to explicitly call this function to update data
* (it normally happens in the background when the scheduler is idle), but a check is performed
* if the user explicitly requests up to date data.
*
Expand Down
4 changes: 2 additions & 2 deletions inc/drivers/FXOS8700Accelerometer.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ namespace codal
{
/**
* Class definition for FXOS8700Accelerometer.
* This class provides a simple wrapper between the hybrid FXOS8700 accelerometer and higher level accelerometer funcitonality.
* This class provides a simple wrapper between the hybrid FXOS8700 accelerometer and higher level accelerometer functionality.
*/
class FXOS8700Accelerometer : public Accelerometer
{
Expand Down Expand Up @@ -84,7 +84,7 @@ namespace codal

/**
* Poll to see if new data is available from the hardware. If so, update it.
* n.b. it is not necessary to explicitly call this funciton to update data
* n.b. it is not necessary to explicitly call this function to update data
* (it normally happens in the background when the scheduler is idle), but a check is performed
* if the user explicitly requests up to date data.
*
Expand Down
4 changes: 2 additions & 2 deletions inc/drivers/FXOS8700Magnetometer.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ namespace codal
{
/**
* Class definition for FXOS8700Magnetometer.
* This class provides a simple wrapper between the hybrid FXOS8700 magnetometer and higher level magnetometer funcitonality.
* This class provides a simple wrapper between the hybrid FXOS8700 magnetometer and higher level magnetometer functionality.
*/
class FXOS8700Magnetometer : public Compass
{
Expand Down Expand Up @@ -77,7 +77,7 @@ namespace codal

/**
* Poll to see if new data is available from the hardware. If so, update it.
* n.b. it is not necessary to explicitly call this funciton to update data
* n.b. it is not necessary to explicitly call this function to update data
* (it normally happens in the background when the scheduler is idle), but a check is performed
* if the user explicitly requests up to date data.
*
Expand Down
2 changes: 1 addition & 1 deletion inc/drivers/LIS3DH.h
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ namespace codal

/**
* Poll to see if new data is available from the hardware. If so, update it.
* n.b. it is not necessary to explicitly call this funciton to update data
* n.b. it is not necessary to explicitly call this function to update data
* (it normally happens in the background when the scheduler is idle), but a check is performed
* if the user explicitly requests up to date data.
*
Expand Down
4 changes: 2 additions & 2 deletions source/driver-models/AbstractButton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ int AbstractButton::wasPressed()

/**
* Enables this button.
* Buttons are normally created in an enabled state, but use this funciton to re-enable a previously disabled button.
* Buttons are normally created in an enabled state, but use this function to re-enable a previously disabled button.
*/
void AbstractButton::enable()
{
Expand All @@ -84,7 +84,7 @@ void AbstractButton::enable()

/**
* Disable this button.
* Buttons are normally created in an enabled state. Use this funciton to disable this button.
* Buttons are normally created in an enabled state. Use this function to disable this button.
*/
void AbstractButton::disable()
{
Expand Down
2 changes: 1 addition & 1 deletion source/driver-models/Accelerometer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ int Accelerometer::configure()

/**
* Poll to see if new data is available from the hardware. If so, update it.
* n.b. it is not necessary to explicitly call this funciton to update data
* n.b. it is not necessary to explicitly call this function to update data
* (it normally happens in the background when the scheduler is idle), but a check is performed
* if the user explicitly requests up to date data.
*
Expand Down
2 changes: 1 addition & 1 deletion source/driver-models/Compass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ int Compass::getPeriod()

/**
* Poll to see if new data is available from the hardware. If so, update it.
* n.b. it is not necessary to explicitly call this funciton to update data
* n.b. it is not necessary to explicitly call this function to update data
* (it normally happens in the background when the scheduler is idle), but a check is performed
* if the user explicitly requests up to date data.
*
Expand Down
2 changes: 1 addition & 1 deletion source/driver-models/Gyroscope.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ int Gyroscope::configure()

/**
* Poll to see if new data is available from the hardware. If so, update it.
* n.b. it is not necessary to explicitly call this funciton to update data
* n.b. it is not necessary to explicitly call this function to update data
* (it normally happens in the background when the scheduler is idle), but a check is performed
* if the user explicitly requests up to date data.
*
Expand Down
2 changes: 1 addition & 1 deletion source/drivers/FXOS8700Accelerometer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ int FXOS8700Accelerometer::configure()

/**
* Poll to see if new data is available from the hardware. If so, update it.
* n.b. it is not necessary to explicitly call this funciton to update data
* n.b. it is not necessary to explicitly call this function to update data
* (it normally happens in the background when the scheduler is idle), but a check is performed
* if the user explicitly requests up to date data.
*
Expand Down
2 changes: 1 addition & 1 deletion source/drivers/FXOS8700Magnetometer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ int FXOS8700Magnetometer::configure()

/**
* Poll to see if new data is available from the hardware. If so, update it.
* n.b. it is not necessary to explicitly call this funciton to update data
* n.b. it is not necessary to explicitly call this function to update data
* (it normally happens in the background when the scheduler is idle), but a check is performed
* if the user explicitly requests up to date data.
*
Expand Down
2 changes: 1 addition & 1 deletion source/drivers/LIS3DH.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ int LIS3DH::whoAmI()

/**
* Poll to see if new data is available from the hardware. If so, update it.
* n.b. it is not necessary to explicitly call this funciton to update data
* n.b. it is not necessary to explicitly call this function to update data
* (it normally happens in the background when the scheduler is idle), but a check is performed
* if the user explicitly requests up to date data.
*
Expand Down

0 comments on commit 9067359

Please sign in to comment.