Skip to content

Revert "Precompiling lvgl drastically reduces library compile time." #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

Merged
merged 1 commit into from
Apr 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
libraries: |
# Install the library from the local path.
- source-path: ./
- name: lvgl
# Additional library dependencies can be listed here.
# See: https://github.com/arduino/compile-sketches#libraries
sketch-paths: |
Expand Down
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,6 @@ This library allows you to control and interact with the 6 DOF Braccio++ robot a
* [Help Center](https://support.arduino.cc/)
* [Forum](https://forum.arduino.cc)

### How-to-update precompiled `liblvgl`
```bash
git clone https://github.com/lvgl/lvgl
git clone https://github.com/arduino-libraries/Arduino_Braccio_plusplus
cd Arduino_Braccio_plusplus/extras
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j8
```

## :bug: Bugs & Issues

If you want to report an issue with this library, you can submit it to the [issue tracker](https://github.com/arduino-libraries/Arduino_Braccio_plusplus/issues) of this repository. Remember to include as much detail as you can about your hardware set-up, code and steps for reproducing the issue. Make sure you're using an original Arduino board.
Expand Down
27 changes: 0 additions & 27 deletions extras/CMakeLists.txt

This file was deleted.

3 changes: 1 addition & 2 deletions library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ paragraph=This library allows you to control the Arduino Braccio++ 6-DOF 2nd gen
category=Communication
url=https://github.com/arduino-libraries/Arduino_Braccio_plusplus
architectures=mbed,mbed_nano
precompiled=true
ldflags=-llvgl
includes=Braccio++.h
depends=lvgl
2 changes: 1 addition & 1 deletion src/Braccio++.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include "drivers/Ticker.h"

#include "lib/TFT_eSPI/TFT_eSPI.h" // Hardware-specific library
#include "lib/lvgl/lvgl.h"
#include <lvgl.h>

#include <chrono>
using namespace std::chrono;
Expand Down
Binary file removed src/cortex-m0plus/liblvgl.a
Binary file not shown.
2 changes: 1 addition & 1 deletion src/gif.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* USA.
*/

#include "lib/lvgl/lvgl.h"
#include <lvgl.h>

#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
Expand Down
138 changes: 0 additions & 138 deletions src/lib/lvgl/lvgl.h

This file was deleted.

Loading