Re: [riot-devel] How to make my boards appear in the info-boards-supported list

2020-05-25 Thread Kees Bakker
Oh, I see it got fixed in #14129

On 25-05-2020 23:17, Kees Bakker wrote:
> It's because of bootloader_arduino and the following lines in
> makefiles/stdio.inc.mk
>
> ifeq (,$(filter stdio_cdc_acm,$(USEMODULE)))
>   # The arduino and nrfutil bootloader features cannot be used if the
>   # stdio_cdc_acm module is not used
>   FEATURES_BLACKLIST += bootloader_arduino
>   FEATURES_BLACKLIST += bootloader_nrfutil
> endif
>
> It thinks that stdio_cdc_acm is not included in USEMODULE
>
> But the strange this is: USEMODULE **does** contain stdio_cdc_acm
>
> $ echo 'print: ; @echo "$(USEMODULE)"' | BOARD=sodaq-autonomo make
> --no-print-directory -C examples/hello-world -f Makefile -f - print
> auto_init auto_init_usbus board boards_common_samd21-arduino-bootloader
> boards_common_sodaq core core_init core_msg core_panic core_thread_flags
> cortexm_common cortexm_common_periph cpu event isrpipe newlib
> newlib_nano newlib_syscalls_default periph periph_common periph_gpio
> periph_init periph_init_gpio periph_init_pm periph_init_usbdev periph_pm
> periph_usbdev pm_layered sam0_common_periph stdio_cdc_acm sys tsrb
> usb_board_reset usbus usbus_cdc_acm
>
>
>
> On 25-05-2020 12:11, Kees Bakker wrote:
>> OK thanks for looking into this.
>>
>> A quick-and-dirty investigation shows these boards that
>> could potentially be missing.
>>
>> adafruit-clue
>> arduino-mkr1000
>> arduino-mkrfox1200
>> arduino-mkrwan1300
>> arduino-mkrzero
>> arduino-nano-33-ble
>> feather-m0
>> nrf52840dongle
>> sodaq-autonomo
>> sodaq-explorer
>> sodaq-one
>> sodaq-sara-aff
>> sodaq-sara-sff
>>
>>
>> On 25-05-2020 09:13, Francois-Xavier Molina wrote:
>>> Hi,
>>>
>>> I bisected and found the origin in [1], we are investigating. Cheers,
>>>
>>> Francisco
>>>
>>> [1] 
>>> https://github.com/RIOT-OS/RIOT/pull/13738/commits/64552a3b9a05b2dac116008fa61d1842651ffa85
>>>
>>> - Mail original -
 De: "Alexandre Abadie" 
 À: "devel" 
 Envoyé: Lundi 25 Mai 2020 08:58:32
 Objet: Re: [riot-devel] How to make my boards appear in the 
 info-boards-supported list
 Hi Kees,

 This is not normal, they should appear. This is a bug in the build system. 
 I
 tried locally and could reproduce.

 The best would be to open an issue on GitHub that describes the problem.

 Alex

 - Le 24 Mai 20, à 23:32, Kees Bakker k...@ijzerbout.nl a écrit :

> Hey,
>
> I want to run tests on my SODAQ board(s), but they don't
> appear in the output of
>    make -C examples/hello-world info-boards-supported
>
> What are they missing?
> --
> Kees
> ___
> devel mailing list
> devel@riot-os.org
> https://lists.riot-os.org/mailman/listinfo/devel
 ___
 devel mailing list
 devel@riot-os.org
 https://lists.riot-os.org/mailman/listinfo/devel
>>> ___
>>> devel mailing list
>>> devel@riot-os.org
>>> https://lists.riot-os.org/mailman/listinfo/devel
>> ___
>> devel mailing list
>> devel@riot-os.org
>> https://lists.riot-os.org/mailman/listinfo/devel
> ___
> devel mailing list
> devel@riot-os.org
> https://lists.riot-os.org/mailman/listinfo/devel

___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] How to make my boards appear in the info-boards-supported list

2020-05-25 Thread Kees Bakker
It's because of bootloader_arduino and the following lines in
makefiles/stdio.inc.mk

ifeq (,$(filter stdio_cdc_acm,$(USEMODULE)))
  # The arduino and nrfutil bootloader features cannot be used if the
  # stdio_cdc_acm module is not used
  FEATURES_BLACKLIST += bootloader_arduino
  FEATURES_BLACKLIST += bootloader_nrfutil
endif

It thinks that stdio_cdc_acm is not included in USEMODULE

But the strange this is: USEMODULE **does** contain stdio_cdc_acm

$ echo 'print: ; @echo "$(USEMODULE)"' | BOARD=sodaq-autonomo make
--no-print-directory -C examples/hello-world -f Makefile -f - print
auto_init auto_init_usbus board boards_common_samd21-arduino-bootloader
boards_common_sodaq core core_init core_msg core_panic core_thread_flags
cortexm_common cortexm_common_periph cpu event isrpipe newlib
newlib_nano newlib_syscalls_default periph periph_common periph_gpio
periph_init periph_init_gpio periph_init_pm periph_init_usbdev periph_pm
periph_usbdev pm_layered sam0_common_periph stdio_cdc_acm sys tsrb
usb_board_reset usbus usbus_cdc_acm



On 25-05-2020 12:11, Kees Bakker wrote:
> OK thanks for looking into this.
>
> A quick-and-dirty investigation shows these boards that
> could potentially be missing.
>
> adafruit-clue
> arduino-mkr1000
> arduino-mkrfox1200
> arduino-mkrwan1300
> arduino-mkrzero
> arduino-nano-33-ble
> feather-m0
> nrf52840dongle
> sodaq-autonomo
> sodaq-explorer
> sodaq-one
> sodaq-sara-aff
> sodaq-sara-sff
>
>
> On 25-05-2020 09:13, Francois-Xavier Molina wrote:
>> Hi,
>>
>> I bisected and found the origin in [1], we are investigating. Cheers,
>>
>> Francisco
>>
>> [1] 
>> https://github.com/RIOT-OS/RIOT/pull/13738/commits/64552a3b9a05b2dac116008fa61d1842651ffa85
>>
>> - Mail original -
>>> De: "Alexandre Abadie" 
>>> À: "devel" 
>>> Envoyé: Lundi 25 Mai 2020 08:58:32
>>> Objet: Re: [riot-devel] How to make my boards appear in the 
>>> info-boards-supported list
>>> Hi Kees,
>>>
>>> This is not normal, they should appear. This is a bug in the build system. I
>>> tried locally and could reproduce.
>>>
>>> The best would be to open an issue on GitHub that describes the problem.
>>>
>>> Alex
>>>
>>> - Le 24 Mai 20, à 23:32, Kees Bakker k...@ijzerbout.nl a écrit :
>>>
 Hey,

 I want to run tests on my SODAQ board(s), but they don't
 appear in the output of
    make -C examples/hello-world info-boards-supported

 What are they missing?
 --
 Kees
 ___
 devel mailing list
 devel@riot-os.org
 https://lists.riot-os.org/mailman/listinfo/devel
>>> ___
>>> devel mailing list
>>> devel@riot-os.org
>>> https://lists.riot-os.org/mailman/listinfo/devel
>> ___
>> devel mailing list
>> devel@riot-os.org
>> https://lists.riot-os.org/mailman/listinfo/devel
> ___
> devel mailing list
> devel@riot-os.org
> https://lists.riot-os.org/mailman/listinfo/devel

___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] Notification: Hack'n'ACK @ Tue May 26, 2020 5pm - 10pm (CEST) (RIOT Events)

2020-05-25 Thread Martine Sophie Lenders
Following the round-robin fashion of the last two meetings, we'll be
meeting at https://haw-hamburg.zoom.us/j/99810821763. Installation of a
dedicated client [1] might be necessary depending on your OS and Browser.

Best regards,
Martine

[1] https://zoom.us/

Am 25.05.20 um 17:00 schrieb Google Calendar:
>
>
>   Hack'n'ACK
>
> /When/
>   Tue May 26, 2020 5pm – 10pm Central European Time - Berlin
> /Where/
>   FU Berlin; HAW Hamburg(map
> )
> /Calendar/
>   RIOT Events
> /Who/
>   
> • 
> Martine Lenders- creator
>
> more details »
> 
> https://meet.jit.si/riot-hacknack
> 
>
> Invitation from Google Calendar 
>
> You are receiving this email at the account peterschme...@gmail.com
> because you are subscribed for notifications on calendar RIOT Events.
>
> To stop receiving these emails, please log in to
> https://www.google.com/calendar/ and change your notification settings
> for this calendar.
>
> Forwarding this invitation could allow any recipient to send a
> response to the organizer and be added to the guest list, or invite
> others regardless of their own invitation status, or to modify your
> RSVP. Learn More
> .
>
>
> ___
> devel mailing list
> devel@riot-os.org
> https://lists.riot-os.org/mailman/listinfo/devel

___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] How to make my boards appear in the info-boards-supported list

2020-05-25 Thread Kees Bakker
OK thanks for looking into this.

A quick-and-dirty investigation shows these boards that
could potentially be missing.

adafruit-clue
arduino-mkr1000
arduino-mkrfox1200
arduino-mkrwan1300
arduino-mkrzero
arduino-nano-33-ble
feather-m0
nrf52840dongle
sodaq-autonomo
sodaq-explorer
sodaq-one
sodaq-sara-aff
sodaq-sara-sff


On 25-05-2020 09:13, Francois-Xavier Molina wrote:
> Hi,
>
> I bisected and found the origin in [1], we are investigating. Cheers,
>
> Francisco
>
> [1] 
> https://github.com/RIOT-OS/RIOT/pull/13738/commits/64552a3b9a05b2dac116008fa61d1842651ffa85
>
> - Mail original -
>> De: "Alexandre Abadie" 
>> À: "devel" 
>> Envoyé: Lundi 25 Mai 2020 08:58:32
>> Objet: Re: [riot-devel] How to make my boards appear in the 
>> info-boards-supported list
>> Hi Kees,
>>
>> This is not normal, they should appear. This is a bug in the build system. I
>> tried locally and could reproduce.
>>
>> The best would be to open an issue on GitHub that describes the problem.
>>
>> Alex
>>
>> - Le 24 Mai 20, à 23:32, Kees Bakker k...@ijzerbout.nl a écrit :
>>
>>> Hey,
>>>
>>> I want to run tests on my SODAQ board(s), but they don't
>>> appear in the output of
>>>    make -C examples/hello-world info-boards-supported
>>>
>>> What are they missing?
>>> --
>>> Kees
>>> ___
>>> devel mailing list
>>> devel@riot-os.org
>>> https://lists.riot-os.org/mailman/listinfo/devel
>> ___
>> devel mailing list
>> devel@riot-os.org
>> https://lists.riot-os.org/mailman/listinfo/devel
> ___
> devel mailing list
> devel@riot-os.org
> https://lists.riot-os.org/mailman/listinfo/devel

___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] How to make my boards appear in the info-boards-supported list

2020-05-25 Thread Francois-Xavier Molina
Hi,

I bisected and found the origin in [1], we are investigating. Cheers,

Francisco

[1] 
https://github.com/RIOT-OS/RIOT/pull/13738/commits/64552a3b9a05b2dac116008fa61d1842651ffa85

- Mail original -
> De: "Alexandre Abadie" 
> À: "devel" 
> Envoyé: Lundi 25 Mai 2020 08:58:32
> Objet: Re: [riot-devel] How to make my boards appear in the 
> info-boards-supported list

> Hi Kees,
> 
> This is not normal, they should appear. This is a bug in the build system. I
> tried locally and could reproduce.
> 
> The best would be to open an issue on GitHub that describes the problem.
> 
> Alex
> 
> - Le 24 Mai 20, à 23:32, Kees Bakker k...@ijzerbout.nl a écrit :
> 
>> Hey,
>> 
>> I want to run tests on my SODAQ board(s), but they don't
>> appear in the output of
>>   make -C examples/hello-world info-boards-supported
>> 
>> What are they missing?
>> --
>> Kees
>> ___
>> devel mailing list
>> devel@riot-os.org
>> https://lists.riot-os.org/mailman/listinfo/devel
> ___
> devel mailing list
> devel@riot-os.org
> https://lists.riot-os.org/mailman/listinfo/devel
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel