Skip to content

Commit

Permalink
release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gitshaoxiang committed Sep 1, 2023
1 parent 5705edc commit 5fb98ef
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.pio
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch
10 changes: 10 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
}
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"type": "git",
"url": "https://github.com/m5stack/M5StickC-Plus.git"
},
"version": "0.0.9",
"version": "0.1.0",
"frameworks": "arduino",
"platforms": "espressif32",
"headers": "M5StickCPlus.h"
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=M5StickCPlus
version=0.0.9
version=0.1.0
author=M5Stack
maintainer=M5Stack
sentence=Library for M5StickC Plus development kit
Expand All @@ -8,4 +8,4 @@ category=Device Control
url=https://github.com/m5stack/M5StickC-Plus.git
architectures=esp32
includes=M5StickCPlus.h
depends=M5Family,M5Hat-8Servos,M5_JoyC,M5-RoverC
depends=M5Family,M5Hat-8Servos,M5Hat-JoyC,M5-RoverC
2 changes: 1 addition & 1 deletion src/Fonts/glcdfont.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

// Standard ASCII 5x7 font

static const unsigned char font[] PROGMEM = {
const unsigned char font[] PROGMEM = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x5B, 0x4F, 0x5B, 0x3E, 0x3E, 0x6B,
0x4F, 0x6B, 0x3E, 0x1C, 0x3E, 0x7C, 0x3E, 0x1C, 0x18, 0x3C, 0x7E, 0x3C,
0x18, 0x1C, 0x57, 0x7D, 0x57, 0x1C, 0x1C, 0x5E, 0x7F, 0x5E, 0x1C, 0x00,
Expand Down
2 changes: 0 additions & 2 deletions src/utility/MPU6886.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,6 @@ void MPU6886::disableFIFO(void) {

int MPU6886::getFIFOData(int16_t databuf[]) {
uint8_t buf[14];
uint8_t i;

I2C_Read_NBytes(MPU6886_ADDRESS, MPU6886_FIFO_R_W, 14,
buf); // Burst read 14 byte sensor data sample array
Expand All @@ -408,7 +407,6 @@ int MPU6886::getFIFOData(int16_t databuf[]) {
int MPU6886::getFIFOData(int16_t* ax, int16_t* ay, int16_t* az, int16_t* gx,
int16_t* gy, int16_t* gz, int16_t* t) {
uint8_t buf[14];
uint8_t i;

I2C_Read_NBytes(MPU6886_ADDRESS, MPU6886_FIFO_R_W, 14,
buf); // Burst read 14 byte sensor data sample array
Expand Down

0 comments on commit 5fb98ef

Please sign in to comment.