Re: [I] cmake build seems lacking sethost.sh equivalent [nuttx]

2024-01-05 Thread via GitHub
yamt commented on issue #11473: URL: https://github.com/apache/nuttx/issues/11473#issuecomment-1878361001 > I think this should have been designed in the nuttx_kconfig module. > > https://github.com/apache/nuttx/blob/3bac4492865ad3bd4c293e9d751163e090634678/cmake/nuttx_kconfig.cmake#L

[PR] net/can: Release IOB when failed to queue in datahandler [nuttx]

2024-01-05 Thread via GitHub
wengzhe opened a new pull request, #11491: URL: https://github.com/apache/nuttx/pull/11491 ## Summary If we just clear the IOB when failed to queue, we'll leak it. ## Impact Minor, `iob_tryadd_queue` failure in `can_datahandler`. ## Testing CI -- This is an automated

[PR] net: Only call `arp_send` for `PF_INET` and `icmpv6_neighbor` for `PF_INET6` [nuttx]

2024-01-05 Thread via GitHub
wengzhe opened a new pull request, #11492: URL: https://github.com/apache/nuttx/pull/11492 ## Summary If we only enable one of `CONFIG_NET_ARP_SEND` and `CONFIG_NET_ICMPv6_NEIGHBOR`, both IPv4 and IPv6 traffic will send ARP or NDP, which causes problem. Example: `CONFIG_NET_ARP

Re: [PR] SAMA5 - add LCD backlight PWM clock source selection [nuttx]

2024-01-05 Thread via GitHub
acassis merged PR #11494: URL: https://github.com/apache/nuttx/pull/11494 -- 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.apac

(nuttx) branch master updated: SAMA5 - add LCD backlight PWM cLock source selection

2024-01-05 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 438439c1a6 SAMA5 - add LCD backlight PWM cLock s

Re: [I] Schedule policy for stm32f4discovery(stm32f407) [nuttx]

2024-01-05 Thread via GitHub
acassis commented on issue #11490: URL: https://github.com/apache/nuttx/issues/11490#issuecomment-1878897969 @nopnop2002 by default RR is select to this board: ``` CONFIG_RR_INTERVAL=200 ``` If you want to disable it set the value to 0: ``` CONFIG_RR_INTERVAL=0 ```

Re: [I] Schedule policy for stm32f4discovery(stm32f407) [nuttx]

2024-01-05 Thread via GitHub
acassis commented on issue #11490: URL: https://github.com/apache/nuttx/issues/11490#issuecomment-1878905569 @xiaoxiang781216 @patacongo @pkarashchenko I think it the default config is prone to error. It should be better to have CONFIG_SCHED_FIFO, CONFIG_SCHED_RR, CONFIG_SCHED_SPORADIC,

Re: [I] ESP32S3: LEDC does not have output. [nuttx]

2024-01-05 Thread via GitHub
acassis commented on issue #11476: URL: https://github.com/apache/nuttx/issues/11476#issuecomment-1878913260 Hi @w2016561536 thank you for reporting this issue, when I tested it last year everything was working fine. @tmedicci do you know if it stopped to work? -- This is an automated mes

[PR] net:Add support for multi PHY and optionally use it on imxrt [nuttx]

2024-01-05 Thread via GitHub
davids5 opened a new pull request, #11495: URL: https://github.com/apache/nuttx/pull/11495 ## Summary Support runtime phy selection based on a listsupplied by board.h For Example: #define BOARD_ETH0_PHY_LIST \ {

Re: [PR] Add loading of ET_DYN shared object test to sotest [nuttx-apps]

2024-01-05 Thread via GitHub
acassis commented on PR #2026: URL: https://github.com/apache/nuttx-apps/pull/2026#issuecomment-1879356323 @nealef any idea why the CI is failing in the CI ? Please run the config update to verify is all boards defconfig are correct: ``` $ ./tools/refresh.sh --silent --defaults all

Re: [I] Schedule policy for stm32f4discovery(stm32f407) [nuttx]

2024-01-05 Thread via GitHub
nopnop2002 commented on issue #11490: URL: https://github.com/apache/nuttx/issues/11490#issuecomment-1879372425 @acassis I changed the CONFIG_RR_INTERVAL value to 0 and built again. But nothing changes. ``` nsh> task_test test2 task_create name:myTask1 priority:100

(nuttx-website) branch asf-site updated: Publishing web: 36ddd7c60a8230335eda886c909bc938739114a2 docs: 438439c1a6258abef5d4a85d0ead80aedbba2db2

2024-01-05 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/nuttx-website.git The following commit(s) were added to refs/heads/asf-site by this push: new e6a01625 Publishing web: 36ddd7c6

Re: [I] [help] confirming ostest output in KERNEL mode [nuttx-apps]

2024-01-05 Thread via GitHub
yf13 commented on issue #2246: URL: https://github.com/apache/nuttx-apps/issues/2246#issuecomment-1879522917 On `rv-virt/knsh64`. the exit code is also -1: ``` sched_lock: Finished End of test memory usage: VARIABLE BEFORE AFTER arena

[PR] risc-v/rv-virt: revise mstatus operations [nuttx]

2024-01-05 Thread via GitHub
yf13 opened a new pull request, #11496: URL: https://github.com/apache/nuttx/pull/11496 ## Summary This contain revision for kernel mode startup logic: - no need for SUM as it is taken care by `riscv_set_idleintctx()` - fix the CLEAR_CSR() before setting MPP field ## I