Bug in arch/arm/stm32h7/src/stm32_ethernet.c

2020-10-26 Thread Frank-Christian Kruegel
Hello World(); When using the CONFIG_STM32H7_PHYINIT option I get an compile error saying that ret ist undefined. Fix: --- nuttx-org/arch/arm/src/stm32h7/stm32_ethernet.c    2020-10-26 12:09:41.855853749 +0100 +++ nuttx/arch/arm/src/stm32h7/stm32_ethernet.c    2020-10-26 12:12:50.923943167

Re: Bug in arch/arm/stm32h7/src/stm32_ethernet.c

2020-10-26 Thread Alan Carvalho de Assis
Hi Frank-Christian, I just submitted a PR to fix the issue you reported: https://github.com/apache/incubator-nuttx/pull/2120 Please let me know if it works for you. BR, Alan On 10/26/20, Frank-Christian Kruegel wrote: > Hello World(); > > When using the CONFIG_STM32H7_PHYINIT option I get an

RE: interrupt priorities on nRF52

2020-10-26 Thread David Sidrane
> But the priority difference doesn't imply that the nested interrupt > happens automatically, you have to enable the interrupt manually after the critical CPU register and OS state is saved. My recollection is it depends on the priority assigned to the interrupt and the fence level used (NVIC_SYS

Running ifconfig on BeagleboneBlack

2020-10-26 Thread Subhra Sankha Sarkar
Hello all, I just got started with NuttX and was able to build (using the default beaglebone-black:nsh configuration) & run the OS on my Beaglebone Black (BBB). However, when I checked for the list of commands available on it, I am only seeing a limited subset of what NuttX offers. --

Re: Running ifconfig on BeagleboneBlack

2020-10-26 Thread Brennan Ashton
Support for ethernet has not been ported to that platform unfortunately, so it is much more than turning on some kconfig options. If you want to use a platform with ethernet support I would look for one with a netnsh configuration. --Brennan On Mon, Oct 26, 2020, 8:48 AM Subhra Sankha Sarkar wr

Re: Running ifconfig on BeagleboneBlack

2020-10-26 Thread Alan Carvalho de Assis
Hi Subhra, Welcome to the NuttX community! Unfortunately we selected a board that doesn't have Ethernet driver, see inside this directory: nuttx/arch/arm/src/am335x/ and you will realize which peripherals are supported to this board. I'm CC Mr. Petro, he is the guy who ported NuttX to BBB, maybe

Re: Running ifconfig on BeagleboneBlack

2020-10-26 Thread Subhra Sankha Sarkar
Thank you Alan and Brennan for welcoming me to the community and for your prompt response. Sure, I shall get in touch with Petro to understand the current state of development of the Ethernet driver on BBB and if I can help in any way. I specifically asked for ifconfig because I wanted to test my

Re: Running ifconfig on BeagleboneBlack

2020-10-26 Thread Brennan Ashton
You should be able to use the simulator for testing that if you are using Linux. There is Windows and macOS support as well but I am not familiar with using it. http://nuttx.apache.org/docs/latest/guides/simulator.html#accessing-the-network Even without setting up the host network side you should

Re: Running ifconfig on BeagleboneBlack

2020-10-26 Thread Subhra Sankha Sarkar
Excellent! Thank you Brennan. Though this is not exactly what I was looking for, this will help test build issues, if any. Tomorrow once the patch is ready for 1883, I may have to bug you again on how to test it by mounting/unmounting procfs. Sincerely, Subhra Sankha Sarkar On Mon, Oct 26, 2020

Re: sim target failures 10.0 branch

2020-10-26 Thread Maciej Wójcik
Hi Brennan, I would gladly join you with checking some of the boards in this table. For example I have some nostalgic relation with `hymini-stm32v` my first board :D Just removed the dust from it and flashed with NuttX 10. It is almost working :) (it was hanging on the missing SD card for a min

Re: sim target failures 10.0 branch

2020-10-26 Thread Brennan Ashton
That would be awesome. I actually started writing a tool to help with this process but deferred to the spreadsheet to get this release done. Only the project scaffolding and logo is done but here it is for reference: https://github.com/btashton/nuttx-testnom My idea there is to have a webapp whe

Re: interrupt priorities on nRF52

2020-10-26 Thread Matias N.
As Greg mentioned in the corresponding open issue, TizenRT took Greg's snippets from the Wiki page and mostly implemented that. Couldn't really find more changes than that, so I'm not sure if it is actually used on TizenRT or they managed to make the change relatively simple. I don't quite gras