Re: [PR] xtensa/esp32s3: Fixed bbpll not calibrated from bootloader issue [nuttx]

2023-12-19 Thread via GitHub
xiaoxiang781216 merged PR #11427: URL: https://github.com/apache/nuttx/pull/11427 -- 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...@nu

(nuttx) branch master updated: xtensa/esp32s3: Fixed bbpll not calibrated from bootloader issue 1. Solve wifi may not work bug for bbpll not lock or not stable when enable RF. 2. Improved timing t

2023-12-19 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 0810fc45b7 xtensa/esp32s3: Fixed bbpll not cal

Re: [PR] sensors: mx56xx: Fix threshold and calculation [nuttx]

2023-12-19 Thread via GitHub
takumiando commented on PR #11426: URL: https://github.com/apache/nuttx/pull/11426#issuecomment-1863745016 I found more mistake and fixed it. -- 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 s

[PR] xtensa/esp32s3: Fixed bbpll not calibrated from bootloader issue [nuttx]

2023-12-19 Thread via GitHub
cwespressif opened a new pull request, #11427: URL: https://github.com/apache/nuttx/pull/11427 ## Summary xtensa/esp32s3: Fixed bbpll not calibrated from bootloader issue - Solve Wi-Fi may not work bug for bbpll not lock or not stable when enable RF. - Improved timing tuning

[PR] sensors: mx56xx: Fix threshold of second order compensation [nuttx]

2023-12-19 Thread via GitHub
takumiando opened a new pull request, #11426: URL: https://github.com/apache/nuttx/pull/11426 The threshold of second order compensation at very low temperature is **-15°C**. Sorry for my mistake... -- This is an automated message from the Apache Git Service. To respond to the message,

Re: [PR] boards/esp32s2: Increase init task stack size to 3072 [nuttx]

2023-12-19 Thread via GitHub
xiaoxiang781216 commented on PR #11425: URL: https://github.com/apache/nuttx/pull/11425#issuecomment-1863721363 @tmedicci why not try this tool https://github.com/apache/nuttx/pull/11348 to optimize the stack usage in the common case? It's always the last resort to increase the stack size.

Re: [PR] cmocka kernel tests [nuttx-apps]

2023-12-19 Thread via GitHub
behappy1234 closed pull request #2236: cmocka kernel tests URL: https://github.com/apache/nuttx-apps/pull/2236 -- 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

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

2023-12-19 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 36600b2f Publishing web: 36ddd7c6

Re: [PR] CMake:switch CMake Linker from gcc/g++ to ld [nuttx]

2023-12-19 Thread via GitHub
pkarashchenko commented on PR #11421: URL: https://github.com/apache/nuttx/pull/11421#issuecomment-1863484072 Usage of LTO requires linking to be done by GCC. I think that was the main reason why we switched to this linking method from in Makefiles (from LD previously) -- This is an auto

[PR] boards/esp32s2: Increase init task stack size to 3072 [nuttx]

2023-12-19 Thread via GitHub
tmedicci opened a new pull request, #11425: URL: https://github.com/apache/nuttx/pull/11425 ## Summary * boards/esp32s2: Increase init task stack size to 3072 This is done to avoid casual stack overflows. ## Impact Avoid some simple commands to fail due to stack ov

Re: [PR] drivers/net/ksz9477: Add simple port-based static VLAN configuration [nuttx]

2023-12-19 Thread via GitHub
jlaitine commented on code in PR #11422: URL: https://github.com/apache/nuttx/pull/11422#discussion_r1431818768 ## include/nuttx/net/ksz9477.h: ## @@ -91,6 +91,62 @@ int ksz9477_i2c_init(struct i2c_master_s *i2c_bus, # error Only I2c interface currently supported #endif +/*

Re: [PR] drivers/net/ksz9477: Add simple port-based static VLAN configuration [nuttx]

2023-12-19 Thread via GitHub
jlaitine commented on code in PR #11422: URL: https://github.com/apache/nuttx/pull/11422#discussion_r1431816914 ## drivers/net/ksz9477.c: ## @@ -36,6 +36,21 @@ * Private Data / +#ifdef CONFIG_NET_K

Re: [PR] Add MTD for AT25 eeprom [nuttx]

2023-12-19 Thread via GitHub
TimJTi commented on PR #11423: URL: https://github.com/apache/nuttx/pull/11423#issuecomment-1863229133 > > I still can't see the error in the CI logs thought? May be I "can't see for looking"? > > Errors and warnings reported by Kconfig are not printed in CI and this is the root of t

Re: [PR] Add MTD for AT25 eeprom [nuttx]

2023-12-19 Thread via GitHub
raiden00pl commented on PR #11423: URL: https://github.com/apache/nuttx/pull/11423#issuecomment-1863227146 > I still can't see the error in the CI logs thought? May be I "can't see for looking"? Errors and warning reported by Kconfig are not printed in CI and this is the root of the

[I] Bug when running `make olddefconfig V=1` [nuttx]

2023-12-19 Thread via GitHub
tmedicci opened a new issue, #11424: URL: https://github.com/apache/nuttx/issues/11424 After https://github.com/apache/nuttx/pull/10801, running the command `make olddefconfig` with `V=1` verbosity fails in some environments. Specifically, it fails with the NuttX CI container (https://gith

Re: [PR] Add MTD for AT25 eeprom [nuttx]

2023-12-19 Thread via GitHub
TimJTi commented on PR #11423: URL: https://github.com/apache/nuttx/pull/11423#issuecomment-1863218200 Thank you! I was 99% sure it was Kconfig related but couldn't spot the error. This has bitten me before :( 1. I still can't see the error in the CI logs thought? May be I "can't see

Re: [PR] Add MTD for AT25 eeprom [nuttx]

2023-12-19 Thread via GitHub
raiden00pl commented on PR #11423: URL: https://github.com/apache/nuttx/pull/11423#issuecomment-1863210185 according to the first failure reported by CI https://github.com/apache/nuttx/actions/runs/7265338667/job/19794901605?pr=11423#step:7:75, you can try compile this locally: ```

Re: [PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-19 Thread via GitHub
raiden00pl commented on PR #11416: URL: https://github.com/apache/nuttx/pull/11416#issuecomment-1863183393 If there are no more complaints than mine on this topic, I'll merge this PR tomorrow -- This is an automated message from the Apache Git Service. To respond to the message, please lo

Re: [PR] drivers/net/ksz9477: Add simple port-based static VLAN configuration [nuttx]

2023-12-19 Thread via GitHub
xiaoxiang781216 commented on code in PR #11422: URL: https://github.com/apache/nuttx/pull/11422#discussion_r1431689730 ## drivers/net/ksz9477.c: ## @@ -36,6 +36,21 @@ * Private Data / +#ifdef CONFI

Re: [PR] Add MTD for AT25 eeprom [nuttx]

2023-12-19 Thread via GitHub
TimJTi commented on PR #11423: URL: https://github.com/apache/nuttx/pull/11423#issuecomment-1863099584 Thanks for taking time to reply. I am finding some logical/programmatic errors at the moment so will leave it as a draft and once I am sure it is 100% working on my test bed I will go thro

Re: [PR] Add MTD for AT25 eeprom [nuttx]

2023-12-19 Thread via GitHub
slorquet commented on PR #11423: URL: https://github.com/apache/nuttx/pull/11423#issuecomment-1863095849 I edited my message to remove my remark because I missed that you had already run it. I have no miraculous way to run it, and I still get errors after sending a checked pull request.

Re: [PR] Add MTD for AT25 eeprom [nuttx]

2023-12-19 Thread via GitHub
TimJTi commented on PR #11423: URL: https://github.com/apache/nuttx/pull/11423#issuecomment-1863077891 I very definitely do run checkpatch.sh before subbitting a PR. If I run: `./tools/checkpatch.sh -f drivers/mtd/at25ee.c` I get NO ERRORS!!! It had found loads, wh

Re: [PR] Add MTD for AT25 eeprom [nuttx]

2023-12-19 Thread via GitHub
slorquet commented on PR #11423: URL: https://github.com/apache/nuttx/pull/11423#issuecomment-1863066028 Yes, the CI as implemented in this project is the worst user experience I have experimented EVER. And I mean that litterally. It is an absolute NIGHTMARE of inconsistent web pages with r

Re: [PR] Add MTD for AT25 eeprom [nuttx]

2023-12-19 Thread via GitHub
TimJTi commented on PR #11423: URL: https://github.com/apache/nuttx/pull/11423#issuecomment-1863032289 As per usual ABSOLUTELY NO IDEA why this is failing CI. It passes checkpatch. No clues in CI output is NOT helpful. -- This is an automated message from the Apache Git Service. To respon

[PR] Add MTD for AT25 eeprom [nuttx]

2023-12-19 Thread via GitHub
TimJTi opened a new pull request, #11423: URL: https://github.com/apache/nuttx/pull/11423 ## Summary Adds MTD driver for AT25 SPI EEPROM devices, based on character driver code by @slorquet and the existing at24xx.c block driver code ## Impact None. ## Testing Custom b

[PR] drivers/net/ksz9477: Add simple port-based static VLAN configuration [nuttx]

2023-12-19 Thread via GitHub
jlaitine opened a new pull request, #11422: URL: https://github.com/apache/nuttx/pull/11422 ## Summary Add a static port-based VLAN configuration for KSZ9477 switch. This doesn't use the VLAN tagging, but is a switch's internal mechanism to simply configure if the packet forwarding i

Re: [PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-19 Thread via GitHub
davids5 commented on PR #11416: URL: https://github.com/apache/nuttx/pull/11416#issuecomment-1862780125 Loosing a customized defconfig is expensive. Compatibility at this level is not valuable. I think it is better to have savedefconfig save the defconfig of the board and avoid the copy no

Re: [PR] CMake:switch CMake Linker from gcc/g++ to ld [nuttx]

2023-12-19 Thread via GitHub
anchao commented on PR #11421: URL: https://github.com/apache/nuttx/pull/11421#issuecomment-1862679981 Using ld may cause LTO optimization break, Link-Time-Optimization will only be executed in the link stage, and requires the support of GCC lto-wrapper. You can try replace gcc to ld and en

Re: [PR] CMake:switch CMake Linker from gcc/g++ to ld [nuttx]

2023-12-19 Thread via GitHub
xuxin930 commented on PR #11421: URL: https://github.com/apache/nuttx/pull/11421#issuecomment-1862613284 hi @anchao @raiden00pl @no1wudi whats your opinion -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[PR] cmocka kernel tests [nuttx-apps]

2023-12-19 Thread via GitHub
behappy1234 opened a new pull request, #2237: URL: https://github.com/apache/nuttx-apps/pull/2237 ## Summary The purpose is to add kernel tests in ci for nuttx. Hope to add these test check in CI after build sim. ## Impact apps/testing ## Testing Compile and run test in local.

[PR] cmocka kernel tests [nuttx-apps]

2023-12-19 Thread via GitHub
behappy1234 opened a new pull request, #2236: URL: https://github.com/apache/nuttx-apps/pull/2236 ## Summary The purpose is to add kernel tests in ci for nuttx. Hope to add these test check in CI after build sim. ## Impact apps/testing ## Testing Compile an

(nuttx) branch master updated: sensors: mx56xx: Add support for second order compensation

2023-12-19 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 ab693b9bec sensors: mx56xx: Add support for se

Re: [PR] sensors: mx56xx: Add support for second order compensation [nuttx]

2023-12-19 Thread via GitHub
xiaoxiang781216 merged PR #11419: URL: https://github.com/apache/nuttx/pull/11419 -- 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...@nu

(nuttx-apps) branch master updated: examples/rmtchar: Implement RX and/or TX using the RMT char driver

2023-12-19 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-apps.git The following commit(s) were added to refs/heads/master by this push: new 11f2d5e5e examples/rmtchar: Implement RX

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-19 Thread via GitHub
xiaoxiang781216 merged PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232 -- 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...

[PR] CMake:switch CMake Linker from gcc/g++ to ld [nuttx]

2023-12-19 Thread via GitHub
xuxin930 opened a new pull request, #11421: URL: https://github.com/apache/nuttx/pull/11421 ## Summary the current CMake link stage uses gcc/g++ as the linker, which may cause unexpected issues such as link options do not taking effect, so it is better to be switched to ld. the b

[I] use SDCard on NuttX question。 [nuttx]

2023-12-19 Thread via GitHub
GC-20-20 opened a new issue, #11420: URL: https://github.com/apache/nuttx/issues/11420 I tried to follow the tutorial to use the SD card on the nuttx, but now it reports this error when mounting the SD: https://github.com/apache/nuttx/assets/78419332/7f8109b5-2450-4570-a9ca-436d6f7a396d";