From 7761045c4828b4925ffe2124fae7cc1db82fb0fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20G=C3=BCndo=C4=9Fan?= <cnkgndgn@gmail.com> Date: Fri, 4 Dec 2015 17:25:36 +0100 Subject: [PATCH] arduino: minor doc fix --- sys/arduino/doc.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sys/arduino/doc.txt b/sys/arduino/doc.txt index 9f2cb75c43..ca913f6499 100644 --- a/sys/arduino/doc.txt +++ b/sys/arduino/doc.txt @@ -20,7 +20,7 @@ * * @section sec_usage General usage * - * To run you Arduino sketch in RIOT, just follow these steps: + * To run your Arduino sketch in RIOT, just follow these steps: * * -# create an empty application * -# add the `arduino` module to your application, your `Makefile` should now @@ -35,7 +35,7 @@ * include $(RIOTBASE)/Makefile.include * @endcode * - * -# copy you Arduino sktech(es) into your application folder. Currently they + * -# copy your Arduino sktech(es) into your application folder. Currently they * must have the file ending `*.sketch` to be processed. * -# build, flash, and run your application the usual RIOT-way: simply call * `make all`, `make flash`, `make term`, etc. @@ -87,7 +87,7 @@ * * @note As prerequisite, the board must have support for C++. * - * To add Arduino support to a board, it has to provice the following: + * To add Arduino support to a board, it has to provide the following: * * In `RIOT/board/BOARD/include/arduino_board.h`: * - a mapping of GPIO pins to Arduino pin numbers named `arduino_pinmap`, e.g. @@ -112,9 +112,9 @@ * @endcode * This links to the third entry in the `arduino_pinmap` array. * - * In addition, you have to add the 'arduino' feature to the board. for this, + * In addition, you have to add the 'arduino' feature to the board. For this, * just add `FEATURES_PROVIDED += arduino` to the 'other features' section in - * your boards `Makefile.features'. + * your board's `Makefile.features'. * * That's it, your board can now run Ardunio sketches. * -- GitLab