Revision: 1439
Author: sebastien.lelong
Date: Sat Oct 31 13:55:40 2009
Log: fixed href + make some images clickable + fix TOC
http://code.google.com/p/jallib/source/detail?r=1439

Modified:
  /trunk/doc/dita/tutorials/tutorial_blink_a_led.xml
  /trunk/doc/dita/tutorials/tutorials.ditamap

=======================================
--- /trunk/doc/dita/tutorials/tutorial_blink_a_led.xml  Sat Oct 31 13:05:20  
2009
+++ /trunk/doc/dita/tutorials/tutorial_blink_a_led.xml  Sat Oct 31 13:55:40  
2009
@@ -27,7 +27,7 @@
      <section>
        <title>Build your circuit</title>
        <p>Well, it looks like we’re all set to go, so grab your breadboard  
and other components, put together the following circuit:</p>
-      <p><image href="images/blink_a_led_circuit.jpg" width="500"/></p>
+      <p><image href="images/blink_a_led_circuit.jpg" width="500"  
otherprops="clickable"/></p>
      </section>
      <section>
        <p>And here’s what it looks like. Notice the additional orange wire  
to the left of my PIC, this ensures that I always put my PIC in the correct  
position after programming. Do not connect your power 5v supply till your  
circuit is complete and checked over at least twice. You will burn your PIC  
if power is on while building your circuit. You will want an on/off switch  
for your power supply.</p>
@@ -52,7 +52,7 @@
      </section>
      <section>
        <title>Let’s write some code</title>
-      <p>So now we’re going to write the code that will make our LED  
blink. All code will be shown in green text. You can read more about JAL  
language useage here: <xref class="- topic/xref "  
href="http://www.casadeyork.com/jalv2/language.html";>http://www.casadeyork.com/jalv2/language.html</xref></p>
+      <p>So now we’re going to write the code that will make our LED  
blink. All code will be shown in green text. You can read more about JAL  
language useage here: <xref  
href="http://www.casadeyork.com/jalv2/language.html"; class="- topic/xref "  
format="html">http://www.casadeyork.com/jalv2/language.html</xref></p>
      </section>
      <section>
        <title>Title &amp; Author Block</title>
@@ -108,7 +108,7 @@
        <p><image href="images/blink_a_led_16f877_pinout.jpg"/></p>
        <p>As you can see, we are using the pin RA0/ANO at pin #2. RA0 is  
the pin name we are looking for. AN0 is another name for this same pin  
(used in the analog to digital tutorial), but we can ignore it in this  
tutorial. In the JAL language RA0 is written as pin_A0</p>
        <p>Now let’s read the details of this pin in the PDF file on page  
10. As you can see RA0 is a TTL Digital I/O pin. We are checking this to  
make sure it is not a open drain output. Open drain outputs (like pin RA4)  
require a pull-up resistor from the pin to V+</p>
-      <p><image href="images/blink_a_led_16f877_pin_info.jpg"  
width="500"/></p>
+      <p><image href="images/blink_a_led_16f877_pin_info.jpg" width="500"  
otherprops="clickable"/></p>
        <p>Now write code for pin A0. We are writing an “alias” only because  
in the future we can refer to pin 2 (A0) as “led”. This way we no longer  
need to remember the name of the pin (exept for the next line of code we  
will write)</p>
        <p><codeblock>--
  -- You may want to change the selected pin:
=======================================
--- /trunk/doc/dita/tutorials/tutorials.ditamap Sat Oct 31 13:05:20 2009
+++ /trunk/doc/dita/tutorials/tutorials.ditamap Sat Oct 31 13:55:40 2009
@@ -25,11 +25,8 @@
      </booklists>
    </frontmatter>
    <chapter href="tutorial_basics.xml">
-    <topicref navtitle="Blinking a LED -- TODO"/>
-    <topicref navtitle="Setting up a serial link (UART) -- TODO"/>
-    <topichead navtitle="Basics">
        <topicref href="tutorial_blink_a_led.xml"/>
-    </topichead>
+      <topicref navtitle="Setting up a serial link (UART) -- TODO"/>
    </chapter>
    <chapter href="tutorial_peripherals.xml">
      <topichead navtitle="Pulse Width Modulation (PWM)">

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jallib" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jallib?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to