From c0ade95ebee1ef9a548873d28e6ada7ed14bbf7e Mon Sep 17 00:00:00 2001 From: RogueM Date: Wed, 27 Jul 2016 11:41:15 +0100 Subject: [PATCH] Prep for fr --- src/fr/404.md | 7 +++ src/fr/overlay/iface-dpi.md | 58 ++++++++++++++++++ src/fr/overlay/iface-gpclk.md | 31 ++++++++++ src/fr/overlay/iface-jtag.md | 33 ++++++++++ src/fr/overlay/iface-pcm.md | 19 ++++++ src/fr/overlay/iface-sd.md | 25 ++++++++ src/fr/settings.yaml | 17 ++++-- src/fr/template/boards.html | 67 +++++++++++++++++++++ src/fr/template/layout-fr.html | 66 ++++++++++++++++++++ src/fr/template/layout.html | 64 +++++++++++--------- src/fr/{overlay => tutorial}/arduino-spi.md | 0 11 files changed, 353 insertions(+), 34 deletions(-) create mode 100644 src/fr/404.md create mode 100644 src/fr/overlay/iface-dpi.md create mode 100644 src/fr/overlay/iface-gpclk.md create mode 100644 src/fr/overlay/iface-jtag.md create mode 100644 src/fr/overlay/iface-pcm.md create mode 100644 src/fr/overlay/iface-sd.md create mode 100644 src/fr/template/boards.html create mode 100644 src/fr/template/layout-fr.html mode change 100644 => 100755 src/fr/template/layout.html rename src/fr/{overlay => tutorial}/arduino-spi.md (100%) diff --git a/src/fr/404.md b/src/fr/404.md new file mode 100644 index 0000000..c69c026 --- /dev/null +++ b/src/fr/404.md @@ -0,0 +1,7 @@ +#404 - Oh dear! + +###Sorry, we couldn't find what you are looking for! + +Use the menu on the left to explore the pins and functions of the Raspberry Pi GPIO. + +Use the menu above to discover new boards, learn about interfaces and find GPIO connection guides. \ No newline at end of file diff --git a/src/fr/overlay/iface-dpi.md b/src/fr/overlay/iface-dpi.md new file mode 100644 index 0000000..e78c5d2 --- /dev/null +++ b/src/fr/overlay/iface-dpi.md @@ -0,0 +1,58 @@ + +#DPI - Display Parallel Interface + +DPI (Display Parallel Interface) is a 24-bit parallel interface with 28 clock and synchronisation signals. The Pi uses a cut-down, 6-bit, 22 pin version omitting the least significant R, G and B colour bits. + +DPI, combined with a simple adaptor consisting of 20 resistors, allows you to add a VGA connector to the Pi which supports resolutions from 640 x 480 up to 1920 x 1024 at 60fps and 6bits per channel. \ No newline at end of file diff --git a/src/fr/overlay/iface-gpclk.md b/src/fr/overlay/iface-gpclk.md new file mode 100644 index 0000000..52eb5e6 --- /dev/null +++ b/src/fr/overlay/iface-gpclk.md @@ -0,0 +1,31 @@ + +#GPCLK - General Purpose CLock + +General Purpose Clock pins can be set up to output a fixed frequency without any ongoing software control. + +The following clock sources are available: + +``` +0 0 Hz Ground +1 19.2 MHz oscillator +2 0 Hz testdebug0 +3 0 Hz testdebug1 +4 0 Hz PLLA +5 1000 MHz PLLC (changes with overclock settings) +6 500 MHz PLLD +7 216 MHz HDMI auxiliary +8-15 0 Hz Ground +``` \ No newline at end of file diff --git a/src/fr/overlay/iface-jtag.md b/src/fr/overlay/iface-jtag.md new file mode 100644 index 0000000..073071d --- /dev/null +++ b/src/fr/overlay/iface-jtag.md @@ -0,0 +1,33 @@ + +#JTAG - Joint Test Action Group + +JTAG is a standardised interface for debugging integrated circuits which you can use to debug your Raspberry Pi. \ No newline at end of file diff --git a/src/fr/overlay/iface-pcm.md b/src/fr/overlay/iface-pcm.md new file mode 100644 index 0000000..9c2636c --- /dev/null +++ b/src/fr/overlay/iface-pcm.md @@ -0,0 +1,19 @@ + +#PCM - Pulse-code Modulation + +PCM (Pulse-code Modulation) is a digital representation of sampled analog. On the Raspberry Pi it's a form of digital audio output which can be understood by a DAC for high quality sound. \ No newline at end of file diff --git a/src/fr/overlay/iface-sd.md b/src/fr/overlay/iface-sd.md new file mode 100644 index 0000000..8edd097 --- /dev/null +++ b/src/fr/overlay/iface-sd.md @@ -0,0 +1,25 @@ + +#SD - SD Card Interface + +SD is the SD host/eMMC interface on the Raspberry Pi. SD host signals are normally used for the microSD slot. + +These pins are "SD host" on Alt0 and "eMMC" on Alt3. \ No newline at end of file diff --git a/src/fr/settings.yaml b/src/fr/settings.yaml index 60c41d6..db3c268 100644 --- a/src/fr/settings.yaml +++ b/src/fr/settings.yaml @@ -24,13 +24,22 @@ strings: - more_information: 'plus d''info' - github_repository: 'lien GitHub' - buy_now: 'achat' -overlays: -- ground -- uart +featured: - i2c - spi -- arduino-spi +- uart - wiringpi +overlays: +- ground +- i2c +- spi +- uart +- wiringpi +- iface-dpi +- iface-gpclk +- iface-jtag +- iface-pcm +- iface-sd - iqaudio-pi-dac - display-o-tron - display-o-tron-hat diff --git a/src/fr/template/boards.html b/src/fr/template/boards.html new file mode 100644 index 0000000..36346ad --- /dev/null +++ b/src/fr/template/boards.html @@ -0,0 +1,67 @@ + + + + + {{title}} + + + + + + + + {{hreflang}} + + + +
+

Raspberry Pinout

+
+ +
+
+
+

Raspberry Pi HATs, pHATs & Add-ons

+

Click on a HAT, pHAT or add-on for more details and to see which pins it uses!

+
+
    {{content}}
+
+
+
    + {{lang_links}} +
+
+
+ +
+ + + + + + + + + diff --git a/src/fr/template/layout-fr.html b/src/fr/template/layout-fr.html new file mode 100644 index 0000000..4a1499c --- /dev/null +++ b/src/fr/template/layout-fr.html @@ -0,0 +1,66 @@ + + + + {{title}} + + + + + + + + + {{hreflang}} + + + +
+ +

Raspberry Pinout

+
+ Tout savoir sur les cartes compatibles Raspberry Pi + +
+ +
+
+ {{content}} +
+
+ +
+ + + + + + + + + diff --git a/src/fr/template/layout.html b/src/fr/template/layout.html old mode 100644 new mode 100755 index 4a1499c..a158642 --- a/src/fr/template/layout.html +++ b/src/fr/template/layout.html @@ -1,58 +1,63 @@ - {{title}} + {{title}} - + {{hreflang}} - +
-

Raspberry Pinout

-
- Tout savoir sur les cartes compatibles Raspberry Pi - -
+
+
+ +
+
    + {{nav_html_interface}} +
+
{{content}}
+
+
    + {{lang_links}} +
+
@@ -60,7 +65,6 @@ - diff --git a/src/fr/overlay/arduino-spi.md b/src/fr/tutorial/arduino-spi.md similarity index 100% rename from src/fr/overlay/arduino-spi.md rename to src/fr/tutorial/arduino-spi.md