-
-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First Compile and run issue #15
Comments
Are you using v2 of the NimBLE library? There has been changes in the API. Currently, v1.4 of NimBLE is used by ChronosESP32 library |
After some struggle, it appears that changing to 1.4.3 seems to have fixed the issue at compile, but produced new issues at upload using the esptool? Compressed 4054752 bytes to 1020370... A fatal error occurred: The chip stopped responding. |
Ah the latest appeared to be an issue on my side, re flashed the ESP32 with examples from ChronosESP32 Library in Arduino IDE to ensure that there are no issues with the board. tried to re upload again using Platform.io and the current repo. Pretty much works straight out the box |
@itspoppadom Do you get reboots with the waveshare |
@jlusco I did not experience any un assisted reboots. Only reboots experienced were intentional through the use of the reset button on the board |
see issue at fbiego#15
Hey there, brilliant project! Excited to run this on my hardware, but i've encountered some issues with compiling and running the code.
Using platform.io to compile and run the project after selecting the correct board in platform.ini file.
I have encountered following issues during compile relating to iphone bluetooth ble advertisement
Any ideas on how to resolve? Instinct was tellign me to just remove these and hope for the best since I'm using android there shouldnt be issues
Archiving .pio\build\lolin_s3_mini_1_69\libb8c\libPreferences.a
Compiling .pio\build\lolin_s3_mini_1_69\FrameworkArduino\FirmwareMSC.cpp.o
.pio/libdeps/lolin_s3_mini_1_69/ChronosESP32/src/ChronosESP32.cpp: In member function 'void ChronosESP32::begin()':
.pio/libdeps/lolin_s3_mini_1_69/ChronosESP32/src/ChronosESP32.cpp:112:16: error: 'class NimBLEAdvertising' has no member named 'setScanResponse'; did you mean 'setScanResponseData'?
pAdvertising->setScanResponse(true);
^~~~~~~~~~~~~~~
setScanResponseData
.pio/libdeps/lolin_s3_mini_1_69/ChronosESP32/src/ChronosESP32.cpp:113:16: error: 'class NimBLEAdvertising' has no member named 'setMinPreferred'; did you mean 'setMinInterval'?
pAdvertising->setMinPreferred(0x06); // functions that help with iPhone connections issue
^~~~~~~~~~~~~~~
setMinInterval
Compiling .pio\build\lolin_s3_mini_1_69\FrameworkArduino\FunctionalInterrupt.cpp.o
.pio/libdeps/lolin_s3_mini_1_69/ChronosESP32/src/ChronosESP32.cpp:114:16: error: 'class NimBLEAdvertising' has no member named 'setMinPreferred'; did you mean 'setMinInterval'?
pAdvertising->setMinPreferred(0x12);
^~~~~~~~~~~~~~~
setMinInterval
Compiling .pio\build\lolin_s3_mini_1_69\FrameworkArduino\HWCDC.cpp.o
Compiling .pio\build\lolin_s3_mini_1_69\FrameworkArduino\HardwareSerial.cpp.o
Compiling .pio\build\lolin_s3_mini_1_69\FrameworkArduino\IPAddress.cpp.o
Compiling .pio\build\lolin_s3_mini_1_69\FrameworkArduino\IPv6Address.cpp.o
Compiling .pio\build\lolin_s3_mini_1_69\FrameworkArduino\MD5Builder.cpp.o
*** [.pio\build\lolin_s3_mini_1_69\lib17c\ChronosESP32\ChronosESP32.cpp.o] Error 1
The text was updated successfully, but these errors were encountered: