I already sent Editor permission for all those listed in the Spreasheet. If someone else here is interested to help, just ping me.
BR, Alan On 3/10/23, Alan C. Assis <acas...@gmail.com> wrote: > Hi Everyone, > > I updated the Brennan spreadsheet with all boards existing on NuttX > currently. > > Please find the link below: > > https://docs.google.com/spreadsheets/d/1fiOiC7vo6AC5IYdZqJ3WG0KGEXS1zwW4owMO1q1IaTo/edit?usp=sharing > > > For future reference a did a quick shell script to do this work, just > enter inside nuttx/boards/ and run it: > > $ cat seekboard.sh > #!/bin/bash > > for i in $(ls -d */); do > for j in $(ls -d $i*/); do > k=$(ls -d $j*/); > echo "$k" > done > done >