[GitHub] [nuttx] acassis opened a new issue, #8017: Create a Software Qualification Testing for Release new versions

2023-01-01 Thread GitBox
acassis opened a new issue, #8017: URL: https://github.com/apache/nuttx/issues/8017 Currently we don't have any kind of Qualification Testing to confirm that a regression wasn't included in our code base. A good starting point is the "ostest" (at apps/testing/ostest) and the SIM CI t

[GitHub] [nuttx] acassis merged pull request #7268: boards: adapt LVGL v8 defconfig

2023-01-01 Thread GitBox
acassis merged PR #7268: URL: https://github.com/apache/nuttx/pull/7268 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache

[GitHub] [nuttx-apps] acassis commented on pull request #1341: LVGL v8 upgrade

2023-01-01 Thread GitBox
acassis commented on PR #1341: URL: https://github.com/apache/nuttx-apps/pull/1341#issuecomment-1368442483 Let's merge and fix possible regressions! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go t

[GitHub] [nuttx-apps] acassis merged pull request #1341: LVGL v8 upgrade

2023-01-01 Thread GitBox
acassis merged PR #1341: URL: https://github.com/apache/nuttx-apps/pull/1341 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.a

[GitHub] [nuttx-apps] acassis closed issue #1322: LVGL v8 version upgrade

2023-01-01 Thread GitBox
acassis closed issue #1322: LVGL v8 version upgrade URL: https://github.com/apache/nuttx-apps/issues/1322 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail

[nuttx] branch master updated: boards: adapt LVGL v8 defconfig

2023-01-01 Thread acassis
This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git The following commit(s) were added to refs/heads/master by this push: new 1c62181b0d boards: adapt LVGL v8 defconfig 1c621

[GitHub] [nuttx-apps] lupyuen commented on issue #1322: LVGL v8 version upgrade

2023-01-01 Thread GitBox
lupyuen commented on issue #1322: URL: https://github.com/apache/nuttx-apps/issues/1322#issuecomment-1368456995 Tested OK on PinePhone. Thanks everyone! :-) ![PXL_20230101_135322546~2.jpg](https://user-images.githubusercontent.com/9960133/210173953-c3d7a440-82c9-4565-bfa8-e8c36c0411fe

[GitHub] [nuttx] zouboan commented on pull request #8009: arm64/a64: add driver for Allwinner A64 I2C bus

2023-01-01 Thread GitBox
zouboan commented on PR #8009: URL: https://github.com/apache/nuttx/pull/8009#issuecomment-1368601867 @lupyuen The issue was fixed, please review this PR, thanks! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[GitHub] [nuttx] lupyuen commented on pull request #8009: arm64/a64: add driver for Allwinner A64 I2C bus

2023-01-01 Thread GitBox
lupyuen commented on PR #8009: URL: https://github.com/apache/nuttx/pull/8009#issuecomment-1368606076 @zouboan Thanks! I'm reviewing now. In a64_twi.c: ```c #define BUS_CLK_GATING_REG3 (A64_CCU_ADDR + 0x006C) ``` Let's change `6C` to `6c` to be consistent. -- This is an

[GitHub] [nuttx] lupyuen commented on pull request #8009: arm64/a64: add driver for Allwinner A64 I2C bus

2023-01-01 Thread GitBox
lupyuen commented on PR #8009: URL: https://github.com/apache/nuttx/pull/8009#issuecomment-1368607152 In a64_twi.c: Let's insert a blank line after `#endif` ```c #endif / * Private Functions ```

[GitHub] [nuttx] lupyuen commented on pull request #8009: arm64/a64: add driver for Allwinner A64 I2C bus

2023-01-01 Thread GitBox
lupyuen commented on PR #8009: URL: https://github.com/apache/nuttx/pull/8009#issuecomment-1368610696 In a64_twi.c: Let's insert a space before `Put`: ```c * Description: * Put a 32-bit register value by offset ``` Let's insert 2 spaces before `modreg32` and `putreg3

[GitHub] [nuttx] lupyuen commented on pull request #8009: arm64/a64: add driver for Allwinner A64 I2C bus

2023-01-01 Thread GitBox
lupyuen commented on PR #8009: URL: https://github.com/apache/nuttx/pull/8009#issuecomment-1368612655 In a64_memorymap.h: ```c #define A64_RTWI_ADDR 0x01f02400 /* R_TWI 0x01f0:2400-0x01f0:27ff 1K */ #define A64_TWI0_ADDR 0x01c2ac00 /* TWI 0 0x01c

[GitHub] [nuttx] lupyuen commented on pull request #8009: arm64/a64: add driver for Allwinner A64 I2C bus

2023-01-01 Thread GitBox
lupyuen commented on PR #8009: URL: https://github.com/apache/nuttx/pull/8009#issuecomment-1368613725 In a64_twi.h: ```c #define A64_TWI_CNTR_OFFSET (0x0C) /* 31:8 bit reserved, INT_EN, BUS_EN, M_STA, INT_FLAG, A_ACK */ #define A64_TWI_EFR_OFFSET (0x1C)

[GitHub] [nuttx] lupyuen commented on pull request #8009: arm64/a64: add driver for Allwinner A64 I2C bus

2023-01-01 Thread GitBox
lupyuen commented on PR #8009: URL: https://github.com/apache/nuttx/pull/8009#issuecomment-1368614383 In a64_twi.h: Let's align the numbers: ```c #define TWI_STAT_ARBLOST_RXGCAS_ACK (0x78) #define TWI_STAT_RXDS_ACK (0x80) #define TWI_STAT_RXDS_NAK (0x

[GitHub] [nuttx] lupyuen commented on pull request #8009: arm64/a64: add driver for Allwinner A64 I2C bus

2023-01-01 Thread GitBox
lupyuen commented on PR #8009: URL: https://github.com/apache/nuttx/pull/8009#issuecomment-1368616653 In a64_twi.c: ```c switch (status) { case 0xf8: /* On reset or stop the bus is idle, used only on polled */ err_code = 0xf8; goto errout; ca

[GitHub] [nuttx] lupyuen commented on pull request #8009: arm64/a64: add driver for Allwinner A64 I2C bus

2023-01-01 Thread GitBox
lupyuen commented on PR #8009: URL: https://github.com/apache/nuttx/pull/8009#issuecomment-1368618056 The I2C logic looks OK when I checked with the A64 User Manual. So my review is complete. After the I2C driver has been merged, I look forward to testing your driver with the [PinePh

[GitHub] [nuttx] lupyuen commented on pull request #8009: arm64/a64: add driver for Allwinner A64 I2C bus

2023-01-01 Thread GitBox
lupyuen commented on PR #8009: URL: https://github.com/apache/nuttx/pull/8009#issuecomment-1368619444 Sorry one last comment: In pinephone_bringup.c: ```c #include ``` Let's wrap it as: ```c #ifdef CONFIG_MPU60X0_I2C # include #endif ``` The sa

[GitHub] [nuttx] zouboan commented on pull request #8009: arm64/a64: add driver for Allwinner A64 I2C bus

2023-01-01 Thread GitBox
zouboan commented on PR #8009: URL: https://github.com/apache/nuttx/pull/8009#issuecomment-1368622943 Thanks very much for your review @lupyuen, let me change the code! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use t

[GitHub] [nuttx] btashton opened a new pull request, #8018: CI/Documentation: livereload hash missmatch due to new wheel packag upload

2023-01-01 Thread GitBox
btashton opened a new pull request, #8018: URL: https://github.com/apache/nuttx/pull/8018 ## Summary When the documentation build was run an error like this would fire: ``` [pipenv.exceptions.InstallError]: ERROR: THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS FILE. I

[GitHub] [nuttx] xiaoxiang781216 merged pull request #8018: CI/Documentation: livereload hash missmatch due to new wheel packag upload

2023-01-01 Thread GitBox
xiaoxiang781216 merged PR #8018: URL: https://github.com/apache/nuttx/pull/8018 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nutt

[nuttx] branch master updated: CI/Documentation: livereload hash missmatch due to new wheel package upload.

2023-01-01 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git The following commit(s) were added to refs/heads/master by this push: new a4ca15aa3e CI/Documentation: livereload hash m

[GitHub] [nuttx] jlaitine commented on a diff in pull request #8000: Change FIOC_MMAP, FIOC_MUNMAP and FIOC_TRUNCATE into file operation c…

2023-01-01 Thread GitBox
jlaitine commented on code in PR #8000: URL: https://github.com/apache/nuttx/pull/8000#discussion_r1059864272 ## include/nuttx/fs/fs.h: ## @@ -206,16 +207,21 @@ struct file_operations * treated like unions. */ - int (*close)(FAR struct file *filep); - ssize_t (*r

[GitHub] [nuttx] jlaitine commented on a diff in pull request #8000: Change FIOC_MMAP, FIOC_MUNMAP and FIOC_TRUNCATE into file operation c…

2023-01-01 Thread GitBox
jlaitine commented on code in PR #8000: URL: https://github.com/apache/nuttx/pull/8000#discussion_r1059864433 ## drivers/video/fb.c: ## @@ -682,6 +675,30 @@ static int fb_ioctl(FAR struct file *filep, int cmd, unsigned long arg) return ret; } +static int fb_mmap(FAR s

[GitHub] [nuttx] jlaitine commented on a diff in pull request #8000: Change FIOC_MMAP, FIOC_MUNMAP and FIOC_TRUNCATE into file operation c…

2023-01-01 Thread GitBox
jlaitine commented on code in PR #8000: URL: https://github.com/apache/nuttx/pull/8000#discussion_r1059865937 ## drivers/video/fb.c: ## @@ -682,6 +675,30 @@ static int fb_ioctl(FAR struct file *filep, int cmd, unsigned long arg) return ret; } +static int fb_mmap(FAR s

[GitHub] [nuttx] jlaitine commented on a diff in pull request #8000: Change FIOC_MMAP, FIOC_MUNMAP and FIOC_TRUNCATE into file operation c…

2023-01-01 Thread GitBox
jlaitine commented on code in PR #8000: URL: https://github.com/apache/nuttx/pull/8000#discussion_r1059866272 ## drivers/video/video.c: ## @@ -3200,6 +3198,22 @@ static int video_ioctl(FAR struct file *filep, int cmd, unsigned long arg) return ret; } +static int video_mma

[GitHub] [nuttx] jlaitine commented on a diff in pull request #8000: Change FIOC_MMAP, FIOC_MUNMAP and FIOC_TRUNCATE into file operation c…

2023-01-01 Thread GitBox
jlaitine commented on code in PR #8000: URL: https://github.com/apache/nuttx/pull/8000#discussion_r1059869454 ## include/nuttx/fs/fs.h: ## @@ -209,13 +211,19 @@ struct file_operations int (*close)(FAR struct file *filep); ssize_t (*read)(FAR struct file *filep, FAR cha

[GitHub] [nuttx] jlaitine commented on a diff in pull request #8000: Change FIOC_MMAP, FIOC_MUNMAP and FIOC_TRUNCATE into file operation c…

2023-01-01 Thread GitBox
jlaitine commented on code in PR #8000: URL: https://github.com/apache/nuttx/pull/8000#discussion_r1059870695 ## include/nuttx/fs/fs.h: ## @@ -209,13 +211,19 @@ struct file_operations int (*close)(FAR struct file *filep); ssize_t (*read)(FAR struct file *filep, FAR cha

[GitHub] [nuttx] jlaitine commented on pull request #8000: Change FIOC_MMAP, FIOC_MUNMAP and FIOC_TRUNCATE into file operation c…

2023-01-01 Thread GitBox
jlaitine commented on PR #8000: URL: https://github.com/apache/nuttx/pull/8000#issuecomment-1368713477 Here I must disagree. You definitely need to change these, since they currently look like this: ``` NULL, /* write */ NULL, /