Carlos Pereira Atencio

Results 151 comments of Carlos Pereira Atencio

Unfortunately this is not something we could do at the moment. Converting a microbit.org link into a localised link (so that a link in the `fr` translated page has a...

> Should we mark removed methods in the docs as 'deprecated, please use x instead', and have a deprecation process a bit like Java, where one major release marks it...

Thanks David, we should port the docs (or link to) from https://docs.micropython.org/en/latest/library/ustruct.html

You can see the available modules running `help('modules')`: ``` MicroPython v1.9.2-34-gd64154c73 on 2017-09-01; micro:bit v1.0.1 with nRF51822 Type "help()" for more information. >>> help('modules') __main__ love os time antigravity machine...

Hi @rhubarbdog, The `math` module already contains `atan()` and `atan2()`: ``` MicroPython 569e361 on 2022-06-20; micro:bit v2.0.0 with nRF52833 Type "help()" for more information. >>> import math >>> math.a acos...

Hi @rhubarbdog, did my previous reply answer your question?

What version of gcc are you using? Sounds like it's not compiling as C++11.

Are you use the target was correctly set in Yotta?

Could you build with the verbose flags and copy the full output? that should show which flags were used.

I just built on Ubuntu with gcc 7.3.1 without issues, these are the steps I take: ``` git clone https://github.com/bbcmicrobit/micropython.git cd micropython yt clean yt target bbc-microbit-classic-gcc-nosd yt up make...