[GitHub] [incubator-nuttx] pkarashchenko commented on a diff in pull request #6743: drivers/battery: Handle the early changed event correctly

2022-07-29 Thread GitBox
pkarashchenko commented on code in PR #6743: URL: https://github.com/apache/incubator-nuttx/pull/6743#discussion_r933758869 ## include/nuttx/list.h: ## @@ -390,6 +390,11 @@ static inline bool list_is_empty(FAR struct list_node *list) return (list->next == list) ? true : fals

[GitHub] [incubator-nuttx] lupyuen commented on pull request #6657: drivers/lcd/st7789: update putarea() method

2022-07-29 Thread GitBox
lupyuen commented on PR #6657: URL: https://github.com/apache/incubator-nuttx/pull/6657#issuecomment-1200094716 (Sorry if I misunderstood this) Does it mean that the `lvgldemo` example might need to be updated to call `putarea` correctly? https://github.com/apache/incubator-nuttx-app

[incubator-nuttx] 02/02: stm32wb/mbox: renaming msg_buf->cmd_buf

2022-07-29 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/incubator-nuttx.git commit cf594b2c8127535ad0cbfeb1a634155a719c180f Author: Sergey Nikitenko AuthorDate: Fri Jul 29 22:51:51 2022 +0300

[incubator-nuttx] branch master updated (f758e0f260 -> cf594b2c81)

2022-07-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from f758e0f260 sensor: format custom ioctl argument by stucture sensor_ioctl_s new 49af13c507 stm32wb/mb

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #6741: stm32wb/mbox: fixing TX buffer queue

2022-07-29 Thread GitBox
xiaoxiang781216 merged PR #6741: URL: https://github.com/apache/incubator-nuttx/pull/6741 -- 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-unsubs

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request, #6743: drivers/battery: Handle the early changed event correctly

2022-07-29 Thread GitBox
xiaoxiang781216 opened a new pull request, #6743: URL: https://github.com/apache/incubator-nuttx/pull/6743 ## Summary since it may happen before battery_xxx_register sometime ## Impact Some corner case ## Testing Internal test -- This is an automated message from

[incubator-nuttx] 01/02: stm32wb/mbox: fixing txbuf queue

2022-07-29 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/incubator-nuttx.git commit 49af13c507a2f91e4dbf32a8a1638a3c10da3d87 Author: Sergey Nikitenko AuthorDate: Fri Jul 29 22:48:52 2022 +0300

[GitHub] [incubator-nuttx] easonxiang commented on a diff in pull request #6725: include: Fixed null struct may caused build issue.

2022-07-29 Thread GitBox
easonxiang commented on code in PR #6725: URL: https://github.com/apache/incubator-nuttx/pull/6725#discussion_r933720681 ## include/nuttx/net/netdev.h: ## @@ -258,21 +258,19 @@ struct net_driver_s /* Link layer address */ +#if defined(CONFIG_NET_ETHERNET) || defined(CONFI

[GitHub] [incubator-nuttx] easonxiang commented on a diff in pull request #6723: sched: Fill the gap in the structures.

2022-07-29 Thread GitBox
easonxiang commented on code in PR #6723: URL: https://github.com/apache/incubator-nuttx/pull/6723#discussion_r933709396 ## sched/mqueue/mqueue.h: ## @@ -65,11 +65,7 @@ struct mqueue_msg_s struct list_node node; /* Link node to message */ uint8_t type;/* (Use

[incubator-nuttx-website] branch asf-site updated: Publishing web: 6758fc5efbbf5ed16c807ccdfb012d94d1db201a docs: f758e0f2603056ac006ddd596ee153ae042fef03

2022-07-29 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 25ab961 Publishing web

[GitHub] [incubator-nuttx] mlyszczek commented on pull request #6725: include: Fixed null struct may caused build issue.

2022-07-29 Thread GitBox
mlyszczek commented on PR #6725: URL: https://github.com/apache/incubator-nuttx/pull/6725#issuecomment-1200039940 Just a note, there is no need to reproduce this. Empty struct/unions are in fact undefined behaviour according to C standard. So one way or another this should be fixed.

[incubator-nuttx] branch dependabot/pip/Documentation/mistune-2.0.3 created (now 8165cf11cd)

2022-07-29 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/pip/Documentation/mistune-2.0.3 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git at 8165cf11cd build(deps): bump mistune from 0.8.4 to 2.0.3 in /Documen

[GitHub] [incubator-nuttx] dependabot[bot] opened a new pull request, #6742: build(deps): bump mistune from 0.8.4 to 2.0.3 in /Documentation

2022-07-29 Thread GitBox
dependabot[bot] opened a new pull request, #6742: URL: https://github.com/apache/incubator-nuttx/pull/6742 Bumps [mistune](https://github.com/lepture/mistune) from 0.8.4 to 2.0.3. Release notes Sourced from https://github.com/lepture/mistune/releases";>mistune's releases. Ve

[GitHub] [incubator-nuttx] onegray opened a new pull request, #6741: stm32wb/mbox: fixing TX buffer queue

2022-07-29 Thread GitBox
onegray opened a new pull request, #6741: URL: https://github.com/apache/incubator-nuttx/pull/6741 ## Summary Fix of wrong copying from temp buffer to processing buffer. Also renaming `msg_buf` to more suitable `cmd_buf`. ## Impact Fixing the issue. ## Testing Normal

[incubator-nuttx] 03/04: driver/sensor: add struct file for all sensor_ops_s

2022-07-29 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/incubator-nuttx.git commit 2ae5a82607f1bb25ab13c07763d75236af9d7cb9 Author: Jiuzhu Dong AuthorDate: Thu Apr 14 11:58:35 2022 +0800

[incubator-nuttx] 02/04: driver/sensors: add open/close api and struct file for sensor_ops

2022-07-29 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/incubator-nuttx.git commit bb07354198fdea42e23a691cca3523822031ad36 Author: Jiuzhu Dong AuthorDate: Wed Apr 13 14:00:08 2022 +0800

[incubator-nuttx] branch master updated (26dbdba5d8 -> f758e0f260)

2022-07-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from 26dbdba5d8 [TCP] Close RAM usage optimization new 3fdd036ba6 driver/sensor: add name prefix "sensor_"

[incubator-nuttx] 01/04: driver/sensor: add name prefix "sensor_" for sensor register

2022-07-29 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/incubator-nuttx.git commit 3fdd036ba6eee2ffd76cfba561ab1b044e3275e2 Author: Jiuzhu Dong AuthorDate: Tue Mar 29 11:39:44 2022 +0800

[incubator-nuttx] 04/04: sensor: format custom ioctl argument by stucture sensor_ioctl_s

2022-07-29 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/incubator-nuttx.git commit f758e0f2603056ac006ddd596ee153ae042fef03 Author: Jiuzhu Dong AuthorDate: Sat Apr 9 21:57:35 2022 +0800

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #6708: driver/sensors[2]: enhance and update sensor driver

2022-07-29 Thread GitBox
xiaoxiang781216 merged PR #6708: URL: https://github.com/apache/incubator-nuttx/pull/6708 -- 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-unsubs

[incubator-nuttx-apps] 02/02: pmconfig: update pmconfig dump

2022-07-29 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/incubator-nuttx-apps.git commit 75155532b699f2c140ab965c800ef47afbff843e Author: ligd AuthorDate: Mon Jun 20 14:31:27 2022 +0800 p

[incubator-nuttx-apps] 01/02: rptun_ping: add sleep param to rptun_ping

2022-07-29 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/incubator-nuttx-apps.git commit a109a6e58bdcb5998897ca3fc52c72e90326a9fc Author: ligd AuthorDate: Wed May 11 12:31:25 2022 +0800 r

[incubator-nuttx-apps] branch master updated (79a137495 -> 75155532b)

2022-07-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git from 79a137495 cu: fix cu hang when meet ctrl + C new a109a6e58 rptun_ping: add sleep param to rptun_

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 merged pull request #1243: rptun & pmconfig cmd update

2022-07-29 Thread GitBox
xiaoxiang781216 merged PR #1243: URL: https://github.com/apache/incubator-nuttx-apps/pull/1243 -- 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-u

[GitHub] [incubator-nuttx] acassis commented on issue #6624: PANIC on TIM7 IRQ in timer example on armv6-m without FRAME_POINTERS

2022-07-29 Thread GitBox
acassis commented on issue #6624: URL: https://github.com/apache/incubator-nuttx/issues/6624#issuecomment-1199827749 BTW, never heard about Milandr MDR32 before and there is not much info about it on Internet. Are you planing to add support to it on mainline? -- This is an automated mess

[GitHub] [incubator-nuttx] acassis commented on issue #6624: PANIC on TIM7 IRQ in timer example on armv6-m without FRAME_POINTERS

2022-07-29 Thread GitBox
acassis commented on issue #6624: URL: https://github.com/apache/incubator-nuttx/issues/6624#issuecomment-1199826075 @ALTracer did this also happens on STM32F1/F4 or only STM32F0 ? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to Git

[GitHub] [incubator-nuttx-apps] acassis commented on a diff in pull request #1238: apps/games: Add shift game

2022-07-29 Thread GitBox
acassis commented on code in PR #1238: URL: https://github.com/apache/incubator-nuttx-apps/pull/1238#discussion_r933504741 ## games/shift/shift_input_console.h: ## @@ -0,0 +1,133 @@ +/ + * apps/games/sh

[GitHub] [incubator-nuttx-apps] acassis commented on a diff in pull request #1238: apps/games: Add shift game

2022-07-29 Thread GitBox
acassis commented on code in PR #1238: URL: https://github.com/apache/incubator-nuttx-apps/pull/1238#discussion_r933501939 ## games/shift/shift_input_console.h: ## @@ -0,0 +1,133 @@ +/ + * apps/games/sh

[GitHub] [incubator-nuttx-apps] pkarashchenko commented on a diff in pull request #1238: apps/games: Add shift game

2022-07-29 Thread GitBox
pkarashchenko commented on code in PR #1238: URL: https://github.com/apache/incubator-nuttx-apps/pull/1238#discussion_r933501088 ## games/shift/shift_input_console.h: ## @@ -0,0 +1,133 @@ +/ + * apps/ga

[GitHub] [incubator-nuttx-apps] acassis commented on a diff in pull request #1238: apps/games: Add shift game

2022-07-29 Thread GitBox
acassis commented on code in PR #1238: URL: https://github.com/apache/incubator-nuttx-apps/pull/1238#discussion_r933491474 ## games/shift/shift_input_console.h: ## @@ -0,0 +1,133 @@ +/ + * apps/games/sh

[GitHub] [incubator-nuttx-apps] acassis commented on a diff in pull request #1238: apps/games: Add shift game

2022-07-29 Thread GitBox
acassis commented on code in PR #1238: URL: https://github.com/apache/incubator-nuttx-apps/pull/1238#discussion_r933491474 ## games/shift/shift_input_console.h: ## @@ -0,0 +1,133 @@ +/ + * apps/games/sh

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on issue #6710: Nuttx file descriptor dup operation issue

2022-07-29 Thread GitBox
xiaoxiang781216 commented on issue #6710: URL: https://github.com/apache/incubator-nuttx/issues/6710#issuecomment-1199739915 @pkarashchenko @patacongo @acassis @masayuki2009 what do you think about this bug? -- This is an automated message from the Apache Git Service. To respond to the m

[GitHub] [incubator-nuttx-apps] pkarashchenko commented on a diff in pull request #1238: apps/games: Add shift game

2022-07-29 Thread GitBox
pkarashchenko commented on code in PR #1238: URL: https://github.com/apache/incubator-nuttx-apps/pull/1238#discussion_r933434382 ## games/shift/shift_input_console.h: ## @@ -0,0 +1,133 @@ +/ + * apps/ga

[GitHub] [incubator-nuttx-apps] pkarashchenko merged pull request #1242: cu: fix cu hang when meet ctrl + C

2022-07-29 Thread GitBox
pkarashchenko merged PR #1242: URL: https://github.com/apache/incubator-nuttx-apps/pull/1242 -- 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-uns

[incubator-nuttx-apps] branch master updated: cu: fix cu hang when meet ctrl + C

2022-07-29 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 79a137495 cu: fix cu hang w

[GitHub] [incubator-nuttx-apps] pkarashchenko commented on a diff in pull request #1243: rptun & pmconfig cmd update

2022-07-29 Thread GitBox
pkarashchenko commented on code in PR #1243: URL: https://github.com/apache/incubator-nuttx-apps/pull/1243#discussion_r933432898 ## nshlib/nsh_syscmds.c: ## @@ -200,27 +220,12 @@ int cmd_pmconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv) boardctl(BOARDIOC_PM_C

[incubator-nuttx-apps] branch master updated: nxlooper: nxlooper should wait call buffer returned before close

2022-07-29 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 8081711e2 nxlooper: nxloope

[GitHub] [incubator-nuttx-apps] pkarashchenko merged pull request #1241: nxlooper: nxlooper should wait call buffer returned before close

2022-07-29 Thread GitBox
pkarashchenko merged PR #1241: URL: https://github.com/apache/incubator-nuttx-apps/pull/1241 -- 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-uns

[incubator-nuttx] branch master updated: [TCP] Close RAM usage optimization

2022-07-29 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/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 26dbdba5d8 [TCP] Close RAM usage opt

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #6740: [TCP] Close RAM usage optimization

2022-07-29 Thread GitBox
xiaoxiang781216 merged PR #6740: URL: https://github.com/apache/incubator-nuttx/pull/6740 -- 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-unsubs

[GitHub] [incubator-nuttx] xiaoxiang781216 closed issue #6721: NuttX with Networking Flash&RAM increase past 60 days.

2022-07-29 Thread GitBox
xiaoxiang781216 closed issue #6721: NuttX with Networking Flash&RAM increase past 60 days. URL: https://github.com/apache/incubator-nuttx/issues/6721 -- 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

[incubator-nuttx] 01/02: drivers/ipcc: add Inter Processor Communication driver

2022-07-29 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/incubator-nuttx.git commit a9f78a64db9d51614d87821d5159fe95a1cbeb02 Author: Michał Łyszczek AuthorDate: Tue Jun 28 15:45:41 2022 +0200

[incubator-nuttx] 02/02: stm32wl5: add lower half driver for IPCC

2022-07-29 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/incubator-nuttx.git commit e887a4a5b750386b3c7e97f8b62137825d9d283e Author: Michał Łyszczek AuthorDate: Tue Jul 5 14:20:53 2022 +0200

[incubator-nuttx] branch master updated (666c2d255a -> e887a4a5b7)

2022-07-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from 666c2d255a Update stm32_ina219.c new a9f78a64db drivers/ipcc: add Inter Processor Communication drive

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #6537: drivers/ipcc: add Inter Processor Communication driver

2022-07-29 Thread GitBox
xiaoxiang781216 merged PR #6537: URL: https://github.com/apache/incubator-nuttx/pull/6537 -- 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-unsubs

[GitHub] [incubator-nuttx] davids5 commented on pull request #6718: add CMake build system support (Enhance #3704)

2022-07-29 Thread GitBox
davids5 commented on PR #6718: URL: https://github.com/apache/incubator-nuttx/pull/6718#issuecomment-1199444059 @anchao - glad that worked out for you - The format looks really good. > there are more important features need to support at this stage, Are there still open tasks

[GitHub] [incubator-nuttx-apps] GUIDINGLI opened a new pull request, #1243: rptun & pmconfig cmd update

2022-07-29 Thread GitBox
GUIDINGLI opened a new pull request, #1243: URL: https://github.com/apache/incubator-nuttx-apps/pull/1243 ## Summary rptun & pmconfig cmd update ## Impact rptun & pmconfig cmd ## Testing VELA -- This is an automated message from the Apache Git Service. To respond

[GitHub] [incubator-nuttx-apps] GUIDINGLI opened a new pull request, #1242: cu: fix cu hang when meet ctrl + C

2022-07-29 Thread GitBox
GUIDINGLI opened a new pull request, #1242: URL: https://github.com/apache/incubator-nuttx-apps/pull/1242 ## Summary cu: fix cu hang when meet ctrl + C We can't do sem_wait in sigaction hang backtrace: [<0x2c5a6958>] arm_switchcontext+0xc/0x10 [<0x2c579eba>] nxsem_w

[GitHub] [incubator-nuttx-apps] GUIDINGLI opened a new pull request, #1241: nxlooper: nxlooper should wait call buffer returned before close

2022-07-29 Thread GitBox
GUIDINGLI opened a new pull request, #1241: URL: https://github.com/apache/incubator-nuttx-apps/pull/1241 ## Summary nxlooper: nxlooper should wait call buffer returned before close ## Impact nxlooper ## Testing VELA -- This is an automated message from t

[GitHub] [incubator-nuttx] Cynerd commented on pull request #6657: drivers/lcd/st7789: update putarea() method

2022-07-29 Thread GitBox
Cynerd commented on PR #6657: URL: https://github.com/apache/incubator-nuttx/pull/6657#issuecomment-1199404132 @lupyuen I think that you don't have to use framebuffer. You only have to change how you use `putarea()`. The issue I was fixing is that the expected behaviour of that function cha

[GitHub] [incubator-nuttx] lupyuen commented on pull request #6657: drivers/lcd/st7789: update putarea() method

2022-07-29 Thread GitBox
lupyuen commented on PR #6657: URL: https://github.com/apache/incubator-nuttx/pull/6657#issuecomment-1199383511 Sorry I'm using LCD Device for ST7789, not Framebuffer. I'm calling `board_lcd_initialize` and `board_lcd_getdev` similar to this: https://github.com/apache/incubator-nuttx

[GitHub] [incubator-nuttx] Cynerd commented on pull request #6657: drivers/lcd/st7789: update putarea() method

2022-07-29 Thread GitBox
Cynerd commented on PR #6657: URL: https://github.com/apache/incubator-nuttx/pull/6657#issuecomment-1199336995 Can you please try the `fb` example? It draws recognizable pattern and it is easier to see what might have gone wrong from it than from this. I tested it and right now develo

[GitHub] [incubator-nuttx-apps] pkarashchenko merged pull request #1240: testing/sensortest: fix cmd argument mismatch(follow new sensor driver)

2022-07-29 Thread GitBox
pkarashchenko merged PR #1240: URL: https://github.com/apache/incubator-nuttx-apps/pull/1240 -- 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-uns

[incubator-nuttx-apps] branch master updated: testing/sensortest: fix cmd argument mismatch(follow new sensor driver)

2022-07-29 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new eef03ad0a testing/sensortes

[GitHub] [incubator-nuttx] lupyuen commented on pull request #6657: drivers/lcd/st7789: update putarea() method

2022-07-29 Thread GitBox
lupyuen commented on PR #6657: URL: https://github.com/apache/incubator-nuttx/pull/6657#issuecomment-1199275251 Here's the ST7789 display with the random noise. Note that the top row of text looks OK, the rest is garbled: ![PXL_20220729_131137211_2](https://user-images.githubusercont

[incubator-nuttx] 01/04: Update stm32_mlx90614.c

2022-07-29 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 07c0b2844a6c0af8860779645d835fdcd16732a4 Author: simbit18 <101105604+simbi...@users.noreply.github.com> A

[incubator-nuttx] branch master updated (4ab8f9383d -> 666c2d255a)

2022-07-29 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from 4ab8f9383d w25qxxxjv.c: Use PRIxOFF to format off_t new 07c0b2844a Update stm32_mlx90614.c n

[incubator-nuttx] 04/04: Update stm32_ina219.c

2022-07-29 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 666c2d255ac05c765fb5ee211df42b1b964e9e59 Author: simbit18 <101105604+simbi...@users.noreply.github.com> A

[incubator-nuttx] 03/04: Update stm32_max31855.c

2022-07-29 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 7a9b434ae689644e224b55d4c445230ddf268d7d Author: simbit18 <101105604+simbi...@users.noreply.github.com> A

[incubator-nuttx] 02/04: Update stm32_max6675.c

2022-07-29 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 9851d4483b10903ed825edc057dcb4690371d2d2 Author: simbit18 <101105604+simbi...@users.noreply.github.com> A

[GitHub] [incubator-nuttx] pkarashchenko merged pull request #6739: boards/arm/stm32/common/src: Fix mistakes in comments, snerr and syslog

2022-07-29 Thread GitBox
pkarashchenko merged PR #6739: URL: https://github.com/apache/incubator-nuttx/pull/6739 -- 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

[GitHub] [incubator-nuttx] pkarashchenko commented on pull request #6657: drivers/lcd/st7789: update putarea() method

2022-07-29 Thread GitBox
pkarashchenko commented on PR #6657: URL: https://github.com/apache/incubator-nuttx/pull/6657#issuecomment-1199266132 @lupyuen could you please attach some picture of a situation that you are describing, just to understand what "random noise" mean. -- This is an automated message from the

[GitHub] [incubator-nuttx-apps] acassis commented on a diff in pull request #1238: apps/games: Add shift game

2022-07-29 Thread GitBox
acassis commented on code in PR #1238: URL: https://github.com/apache/incubator-nuttx-apps/pull/1238#discussion_r933195084 ## games/shift/shift_main.c: ## @@ -0,0 +1,927 @@ +/ + * apps/games/shift/shift

[GitHub] [incubator-nuttx-apps] acassis commented on a diff in pull request #1238: apps/games: Add shift game

2022-07-29 Thread GitBox
acassis commented on code in PR #1238: URL: https://github.com/apache/incubator-nuttx-apps/pull/1238#discussion_r933194184 ## games/shift/shift_input_console.h: ## @@ -0,0 +1,133 @@ +/ + * apps/games/sh

[GitHub] [incubator-nuttx-apps] acassis commented on a diff in pull request #1238: apps/games: Add shift game

2022-07-29 Thread GitBox
acassis commented on code in PR #1238: URL: https://github.com/apache/incubator-nuttx-apps/pull/1238#discussion_r933193591 ## games/shift/shift_input_console.h: ## @@ -0,0 +1,133 @@ +/ + * apps/games/sh

[GitHub] [incubator-nuttx-apps] acassis commented on a diff in pull request #1238: apps/games: Add shift game

2022-07-29 Thread GitBox
acassis commented on code in PR #1238: URL: https://github.com/apache/incubator-nuttx-apps/pull/1238#discussion_r933192461 ## games/shift/shift_input_console.h: ## @@ -0,0 +1,133 @@ +/ + * apps/games/sh

[GitHub] [incubator-nuttx] Donny9 commented on pull request #6708: driver/sensors[2]: enhance and update sensor driver

2022-07-29 Thread GitBox
Donny9 commented on PR #6708: URL: https://github.com/apache/incubator-nuttx/pull/6708#issuecomment-1199187014 > Thank you for clarification. Let's pass `filep` as a second parameter at least. I mean that sensor lower seems to be "this" for ops and user is a supplementary parameter.

[GitHub] [incubator-nuttx] PetervdPerk-NXP opened a new pull request, #6740: [TCP] Close RAM usage optimization

2022-07-29 Thread GitBox
PetervdPerk-NXP opened a new pull request, #6740: URL: https://github.com/apache/incubator-nuttx/pull/6740 ## Summary Addresses some of the impact described in #6721 Which optimizes the following PR #6398 ## Impact Reduces static ram usage by ~ 200 bytes ``` peter@NXL04

[GitHub] [incubator-nuttx] lupyuen commented on pull request #6657: drivers/lcd/st7789: update putarea() method

2022-07-29 Thread GitBox
lupyuen commented on PR #6657: URL: https://github.com/apache/incubator-nuttx/pull/6657#issuecomment-1199155394 Hi @Cynerd this commit seems to cause my ST7789 display to render a screen with random noise. I'm using Pine64's [PineDio Stack BL604](https://lupyuen.github.io/articles/pinedio2)

[GitHub] [incubator-nuttx] davids5 commented on a diff in pull request #6728: w25qxxxjv.c: Ensure Quad SPI mode is enabled

2022-07-29 Thread GitBox
davids5 commented on code in PR #6728: URL: https://github.com/apache/incubator-nuttx/pull/6728#discussion_r933119226 ## drivers/mtd/w25qxxxjv.c: ## @@ -976,8 +1006,8 @@ static int w25qxxxjv_write_page(struct w25qxxxjv_dev_s *priv, if (ret < 0) { - fe

[GitHub] [incubator-nuttx] lupyuen commented on issue #6737: Sensor Interval SNIOC_SET_INTERVAL: Pass by Value or Pointer?

2022-07-29 Thread GitBox
lupyuen commented on issue #6737: URL: https://github.com/apache/incubator-nuttx/issues/6737#issuecomment-1199100338 Great 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 above to go to the specifi

[GitHub] [incubator-nuttx] lupyuen closed issue #6737: Sensor Interval SNIOC_SET_INTERVAL: Pass by Value or Pointer?

2022-07-29 Thread GitBox
lupyuen closed issue #6737: Sensor Interval SNIOC_SET_INTERVAL: Pass by Value or Pointer? URL: https://github.com/apache/incubator-nuttx/issues/6737 -- 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 t

[GitHub] [incubator-nuttx] Donny9 commented on issue #6737: Sensor Interval SNIOC_SET_INTERVAL: Pass by Value or Pointer?

2022-07-29 Thread GitBox
Donny9 commented on issue #6737: URL: https://github.com/apache/incubator-nuttx/issues/6737#issuecomment-1199088227 > And the [BME280 Driver](https://github.com/lupyuen/bme280-nuttx) now receives the correct Interval. > > Could we clarify whether `SNIOC_SET_INTERVAL` should pass by V

[GitHub] [incubator-nuttx-apps] Donny9 opened a new pull request, #1240: testing/sensortest: fix cmd argument mismatch(follow new sensor driver)

2022-07-29 Thread GitBox
Donny9 opened a new pull request, #1240: URL: https://github.com/apache/incubator-nuttx-apps/pull/1240 ## Summary testing/sensortest: fix cmd argument mismatch(follow new sensor driver) Signed-off-by: Jiuzhu Dong ## Impact ## Testing -- This is an autom

[incubator-nuttx] branch master updated: w25qxxxjv.c: Use PRIxOFF to format off_t

2022-07-29 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/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 4ab8f9383d w25qxxxjv.c: Use PRIxOFF

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #6738: w25qxxxjv.c: Use PRIxOFF to format off_t

2022-07-29 Thread GitBox
xiaoxiang781216 merged PR #6738: URL: https://github.com/apache/incubator-nuttx/pull/6738 -- 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-unsubs

[GitHub] [incubator-nuttx] simbit18 opened a new pull request, #6739: boards/arm/stm32/common/src: Fix mistakes in comments, snerr and syslog

2022-07-29 Thread GitBox
simbit18 opened a new pull request, #6739: URL: https://github.com/apache/incubator-nuttx/pull/6739 ## Summary Fix mistakes in comments, snerr and syslog ## Impact none ## Testing -- This is an automated message from the Apache Git Service. To respond to the message, p

[GitHub] [incubator-nuttx] pkarashchenko commented on a diff in pull request #6728: w25qxxxjv.c: Ensure Quad SPI mode is enabled

2022-07-29 Thread GitBox
pkarashchenko commented on code in PR #6728: URL: https://github.com/apache/incubator-nuttx/pull/6728#discussion_r933057890 ## drivers/mtd/w25qxxxjv.c: ## @@ -976,8 +1006,8 @@ static int w25qxxxjv_write_page(struct w25qxxxjv_dev_s *priv, if (ret < 0) { -

[GitHub] [incubator-nuttx] pkarashchenko commented on pull request #6708: driver/sensors[2]: enhance and update sensor driver

2022-07-29 Thread GitBox
pkarashchenko commented on PR #6708: URL: https://github.com/apache/incubator-nuttx/pull/6708#issuecomment-1199042919 Thank you for clarification. Let's pass `filep` as a second parameter at least. I mean that sensor lower seems to be "this" for ops and user is a supplementary parameter.

[incubator-nuttx] branch master updated: arm/allocateheap: fix multiple definition of 'up_allocate_heap'

2022-07-29 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 0d28168679 arm/allocateheap: fix

[GitHub] [incubator-nuttx] pkarashchenko merged pull request #6736: arm/allocateheap: fix multiple definition of 'up_allocate_heap'

2022-07-29 Thread GitBox
pkarashchenko merged PR #6736: URL: https://github.com/apache/incubator-nuttx/pull/6736 -- 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

[GitHub] [incubator-nuttx] michi-jung opened a new pull request, #6738: w25qxxxjv.c: Use PRIxOFF to format off_t

2022-07-29 Thread GitBox
michi-jung opened a new pull request, #6738: URL: https://github.com/apache/incubator-nuttx/pull/6738 ## Summary Use PRIxOFF from NuttX' inttypes.h to format an off_t value during error logging. ## Impact None ## Testing Compiles -- This is an au

[GitHub] [incubator-nuttx] michi-jung commented on a diff in pull request #6728: w25qxxxjv.c: Ensure Quad SPI mode is enabled

2022-07-29 Thread GitBox
michi-jung commented on code in PR #6728: URL: https://github.com/apache/incubator-nuttx/pull/6728#discussion_r932931586 ## drivers/mtd/w25qxxxjv.c: ## @@ -976,8 +1006,8 @@ static int w25qxxxjv_write_page(struct w25qxxxjv_dev_s *priv, if (ret < 0) { -