File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ typedef int32_t sfTkError_t;
52
52
/**
53
53
* @brief General error code for a failure. Note all errors are negative.
54
54
*/
55
- const sfTkError_t ksfkErrFail = -1 ; // general fail
55
+ const sfTkError_t ksfTkErrFail = -1 ; // general fail
56
56
/**
57
57
* @brief The error code value for success. This is always 0.
58
58
*/
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32
32
/* *
33
33
* @brief C function - Runtime check for system byte order
34
34
*/
35
- sfeTKByteOrder sftk_system_byteorder (void )
35
+ sfTkByteOrder sftk_system_byteorder (void )
36
36
{
37
37
uint16_t i = 1 ;
38
38
return *((uint8_t *)&i) == 0 ? sfTkByteOrder::BigEndian : sfTkByteOrder::LittleEndian;
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ enum class sfTkByteOrder : uint8_t
44
44
// Note - toolkit *functions* start with sftk_ to avoid name collisions
45
45
46
46
// Function to determine the byte order of the system
47
- sfeTKByteOrder sftk_system_byteorder (void );
47
+ sfTkByteOrder sftk_system_byteorder (void );
48
48
49
49
uint8_t sftk_byte_swap (uint8_t i );
50
50
uint16_t sftk_byte_swap (uint16_t i );
Original file line number Diff line number Diff line change @@ -35,5 +35,5 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35
35
36
36
// Arduino-ize our byte order types
37
37
38
- const sfTKByteOrder SFTK_MSBFIRST = sfTKByteOrder ::BigEndian ;
39
- const sfTKByteOrder SFTK_LSBFIRST = sfTKByteOrder ::LittleEndian ;
38
+ const sfTkByteOrder SFTK_MSBFIRST = sfTkByteOrder ::BigEndian ;
39
+ const sfTkByteOrder SFTK_LSBFIRST = sfTkByteOrder ::LittleEndian ;
You can’t perform that action at this time.
0 commit comments