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

Reply via email to