Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Tip

Cette page introduit les bases de la programmation en C/C++.

View the english version of this page.

...

Comment un CrcDuino est-il programmé?

Programming a micro-controller board - here the CrcDuino - is a fairly repetitive process.

The code is written in, compiled and finally downloaded in the micro-controller using an Integrated Development Environment. Although the CRC Robotics Competition participants are free to use whatever Arduino compatible IDE, we strongly recommend (and only support) the official desktop-based Arduino IDEProgrammer une carte microcontrôleur - le CrcDuino, ici - est un processus assez répétitif.

Le code est écrit, compilé et finalement téléchargé dans le microcontrôleur en utilisant un Integrated Development Environment. Même si les participants de la Compétition de Robotique CRC sont libres d’utiliser n’importe quel IDE compatible avec Arduino, nous recommandons fortement (et supportons seulement) l’IDE officiel d’Arduino pour les ordinateurs de bureau.

...

Info

In Arduino IDE, compiling is known as verifying and code is written in .ino files.

...