Skip to content

Fix library.properties for bundled libraries #340

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 22 commits into from
Oct 20, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
29d6290
Library: make doom lib non legacy
facchinm Oct 5, 2021
7099920
Libraries: modernize USBMSD library
facchinm Oct 5, 2021
a07afd0
Libraries: remove outdeted WiFi bindings
facchinm Oct 5, 2021
70676ea
USBHOST: fix library.properties
facchinm Oct 5, 2021
4c4c50a
Libraries: modernize USBHID library
facchinm Oct 5, 2021
7c8cfce
Libraries: modernize RPC library
facchinm Oct 5, 2021
92f7f53
Libraries: fix various misleading library.properties
facchinm Oct 5, 2021
cd474b8
USBHID: update examples
facchinm Oct 5, 2021
590f115
Libraries: modernize *_System libs
facchinm Oct 5, 2021
606ec02
Fix Portenta_lvgl example
facchinm Oct 5, 2021
06ae571
Doom: fix example sketch and remove binaries
facchinm Oct 5, 2021
f2095ae
Portenta_Video: hide library
facchinm Oct 5, 2021
b5b3aec
Libraries: modernize SDCARD
facchinm Oct 5, 2021
3eae8b7
Libraries: modernize Portenta_Camera
facchinm Oct 5, 2021
cba214e
Libraries: modernize Portenta_SDRAM and add example
facchinm Oct 5, 2021
a109746
Libraries: Portenta_lvgl: fix examples and rename library
facchinm Oct 5, 2021
4424b33
Modernize Portenta_Video and readd example
facchinm Oct 7, 2021
f3de8b0
Apply suggestions from code review
facchinm Oct 8, 2021
981209c
lvgl: add compatibility layer for both v7 and v8
marqdevx Oct 13, 2021
15e344b
Add missing library dependency to "smoke test" CI workflow
per1234 Oct 8, 2021
d600f09
Expand "smoke test" CI workflow to cover new examples
per1234 Oct 8, 2021
0ebf94f
GH: CI: add lvgl v8 to test matrix
facchinm Oct 13, 2021
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
Prev Previous commit
Next Next commit
Libraries: Portenta_lvgl: fix examples and rename library
  • Loading branch information
facchinm committed Oct 7, 2021
commit a109746714e8617dd9143006ab2bc5c278352b54
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "Portenta_LittleVGL.h"
#include "Portenta_lvgl.h"
#include "lv_demo_widgets.h"

void setup() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "Portenta_LittleVGL.h"
#include "Portenta_lvgl.h"
#include "RPC_internal.h"
#include "USBHost.h"

Expand Down
9 changes: 9 additions & 0 deletions libraries/Portenta_lvgl/library.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name=Portenta_lvgl
version=1.0
author=Arduino
maintainer=Arduino <info@arduino.cc>
sentence=lvgl porting for Portenta H7 via USBC (to HDMI adapter)
paragraph=
category=Display
url=https://github.com/arduino/ArduinoCore-mbed/tree/master/libraries/Portenta_lvgl
architectures=mbed,mbed_portenta
3 changes: 3 additions & 0 deletions libraries/Portenta_lvgl/src/Portenta_LittleVGL.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Old header, kept for backwards compatibility

#include "Portenta_lvgl.h"
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "Portenta_LittleVGL.h"
#include "Portenta_lvgl.h"
#include "lv_conf.h"
#include <lvgl.h>
#include "mbed.h"
Expand Down