Skip to content

Commit f88ec5d

Browse files
committed
Adds licensing information to the project
1 parent e27c39a commit f88ec5d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+1611
-211
lines changed

LICENSE

Lines changed: 1092 additions & 0 deletions
Large diffs are not rendered by default.

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Makefile for LVGL_Micropython Binding
2+
# Copyright (C) 2024 Kevin G Schlosser
3+
# Code that is written by the above named is done under the GPL license
4+
# and that license is able to be viewed in the LICENSE file in the root
5+
# of this project.
26

37
PYTHON_CMD=python3
48

_indev_base.pyi

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Copyright (C) 2024 Kevin G Schlosser
2+
# Code that is written by the above named is done under the GPL license
3+
# and that license is able to be viewed in the LICENSE file in the root
4+
# of this project.
5+
16
from typing import Optional, ClassVar, TYPE_CHECKING, Union
27

38

api_drivers/LICENSE

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
All files in all directories in this directory unless other wise stated inside the file
2+
fall under the following license.
3+
4+
Copyright (C) 2024 Kevin G Schlosser
5+
Code that is written by the above named is done under the GPL license
6+
and that license is able to be viewed in the LICENSE file in the root
7+
of this project.
8+
9+
The reason why a license is not included in each mfile is dut to the code being
10+
loaded onto a memory constrained device and not wanting to use additional
11+
storage and RAM to hold the license information.

api_drivers/common_api_drivers/frozen/other/task_handler.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2+
# Original author: LVGL
3+
4+
# modifications done by the following person have the following license
5+
# Copyright (C) 2024 Kevin G Schlosser
6+
# Code that is written by the above named is done under the GPL license
7+
# and that license is able to be viewed in the LICENSE file in the root
8+
# of this project.
9+
10+
111
import lvgl as lv # NOQA
212
import micropython # NOQA
313
import sys

api_drivers/common_api_drivers/include/common.h

Lines changed: 0 additions & 60 deletions
This file was deleted.

api_drivers/common_api_drivers/utils/lv_colors.py

Lines changed: 0 additions & 44 deletions
This file was deleted.

api_drivers/common_api_drivers/utils/utils.py

Lines changed: 0 additions & 48 deletions
This file was deleted.

api_drivers/lvgl_api_drivers/fs_driver.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
'''
2-
Original author: mhepp(https://forum.lvgl.io/u/mhepp/summary)
3-
'''
1+
# Original author: mhepp(https://forum.lvgl.io/u/mhepp/summary)
2+
3+
# modifications done by the following person have the following license
4+
# Copyright (C) 2024 Kevin G Schlosser
5+
# Code that is written by the above named is done under the GPL license
6+
# and that license is able to be viewed in the LICENSE file in the root
7+
# of this project.
8+
49

510
import lvgl as lv
611
import struct

api_drivers/py_api_drivers/fs_driver.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
'''
2-
Original author: mhepp(https://forum.lvgl.io/u/mhepp/summary)
3-
'''
1+
# Original author: mhepp(https://forum.lvgl.io/u/mhepp/summary)
2+
3+
# modifications done by the following person have the following license
4+
# Copyright (C) 2024 Kevin G Schlosser
5+
# Code that is written by the above named is done under the GPL license
6+
# and that license is able to be viewed in the LICENSE file in the root
7+
# of this project.
8+
49

510
import lvgl as lv
611
import struct
712

13+
814
def _fs_open_cb(drv, path, mode):
915

1016
if mode == lv.FS_MODE.WR:

0 commit comments

Comments
 (0)