-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(model): Rename model class to a shorter version
- Loading branch information
Showing
41 changed files
with
72 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#pragma once | ||
|
||
#include "STM32STEAM32_WB55RG.h" | ||
#include "STEAM32_WB55RG.h" | ||
|
||
#ifndef SAMPLE_MAIN | ||
#define SAMPLE_MAIN ScannerI2C | ||
#endif | ||
|
||
void ScannerI2C(codal::STM32STEAM32_WB55RG& steam32); | ||
void ScannerI2C(codal::STEAM32_WB55RG& steam32); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#pragma once | ||
#include "STM32STEAM32_WB55RG.h" | ||
#include "STEAM32_WB55RG.h" | ||
|
||
#ifndef SAMPLE_MAIN | ||
#define SAMPLE_MAIN SerialSample_main | ||
#endif | ||
|
||
void SerialSample_main(codal::STM32STEAM32_WB55RG& steam32); | ||
void SerialSample_main(codal::STEAM32_WB55RG& steam32); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#pragma once | ||
#include "STM32STEAM32_WB55RG.h" | ||
#include "STEAM32_WB55RG.h" | ||
|
||
#ifndef SAMPLE_MAIN | ||
#define SAMPLE_MAIN SingleSerialSerialSample_main | ||
#endif | ||
|
||
void SingleSerialSerialSample_main(codal::STM32STEAM32_WB55RG& steam32); | ||
void SingleSerialSerialSample_main(codal::STEAM32_WB55RG& steam32); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#pragma once | ||
#include "STM32STEAM32_WB55RG.h" | ||
#include "STEAM32_WB55RG.h" | ||
|
||
#ifndef SAMPLE_MAIN | ||
#define SAMPLE_MAIN Demo_main | ||
#endif | ||
|
||
void Demo_main(codal::STM32STEAM32_WB55RG& steam32); | ||
void Demo_main(codal::STEAM32_WB55RG& steam32); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#pragma once | ||
|
||
#include "STM32STEAM32_WB55RG.h" | ||
#include "STEAM32_WB55RG.h" | ||
|
||
#ifndef SAMPLE_MAIN | ||
#define SAMPLE_MAIN OledSample1327_main | ||
#endif | ||
|
||
void OledSample1327_main(codal::STM32STEAM32_WB55RG& steam32); | ||
void OledSample1327_main(codal::STEAM32_WB55RG& steam32); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#pragma once | ||
|
||
#include "STM32STEAM32_WB55RG.h" | ||
#include "STEAM32_WB55RG.h" | ||
|
||
#ifndef SAMPLE_MAIN | ||
#define SAMPLE_MAIN APDS9960_SampleMain | ||
#endif | ||
|
||
void APDS9960_SampleMain(codal::STM32STEAM32_WB55RG& steam32); | ||
void APDS9960_SampleMain(codal::STEAM32_WB55RG& steam32); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#pragma once | ||
|
||
#include "STM32STEAM32_WB55RG.h" | ||
#include "STEAM32_WB55RG.h" | ||
|
||
#ifndef SAMPLE_MAIN | ||
#define SAMPLE_MAIN BQ27441_SampleMain | ||
#endif | ||
|
||
void BQ27441_SampleMain(codal::STM32STEAM32_WB55RG& steam32); | ||
void BQ27441_SampleMain(codal::STEAM32_WB55RG& steam32); |
Oops, something went wrong.