Update Atmel Studio getting started page and associated images.

This commit is contained in:
Dean Camera 2013-05-12 22:45:11 +02:00
parent 983a2ed87a
commit a3784c5944
3 changed files with 13 additions and 5 deletions

View File

@ -76,7 +76,7 @@
* \code * \code
* // Initialize the board LED driver before first use * // Initialize the board LED driver before first use
* LEDs_Init(); * LEDs_Init();
* *
* // Turn on each of the four LEDs in turn * // Turn on each of the four LEDs in turn
* LEDs_SetAllLEDs(LEDS_LED1); * LEDs_SetAllLEDs(LEDS_LED1);
* Delay_MS(500); * Delay_MS(500);
@ -86,11 +86,11 @@
* Delay_MS(500); * Delay_MS(500);
* LEDs_SetAllLEDs(LEDS_LED4); * LEDs_SetAllLEDs(LEDS_LED4);
* Delay_MS(500); * Delay_MS(500);
* *
* // Turn on all LEDs * // Turn on all LEDs
* LEDs_SetAllLEDs(LEDS_ALL_LEDS); * LEDs_SetAllLEDs(LEDS_ALL_LEDS);
* Delay_MS(1000); * Delay_MS(1000);
* *
* // Turn on LED 1, turn off LED 2, leaving LEDs 3 and 4 in their current state * // Turn on LED 1, turn off LED 2, leaving LEDs 3 and 4 in their current state
* LEDs_ChangeLEDs((LEDS_LED1 | LEDS_LED2), LEDS_LED1); * LEDs_ChangeLEDs((LEDS_LED1 | LEDS_LED2), LEDS_LED1);
* \endcode * \endcode
@ -205,6 +205,14 @@
/* Preprocessor Checks: */ /* Preprocessor Checks: */
#if !defined(__DOXYGEN__) #if !defined(__DOXYGEN__)
#if !defined(LEDS_NO_LEDS)
#define LEDS_NO_LEDS 0
#endif
#if !defined(LEDS_ALL_LEDS)
#define LEDS_ALL_LEDS (LEDS_LED1 | LEDS_LED2 | LEDS_LED3 | LEDS_LED4)
#endif
#if !defined(LEDS_LED1) #if !defined(LEDS_LED1)
#define LEDS_LED1 0 #define LEDS_LED1 0
#endif #endif

View File

@ -43,7 +43,7 @@
#header span #header span
{ {
color: #998 color: #998;
} }
#footer #footer
@ -107,7 +107,7 @@
<body> <body>
<div id="container"> <div id="container">
<div id="header"> <div id="header">
<h1>Thanks for installing <span>LUFA</span></h1> <h1>Thanks for using <span>LUFA</span></h1>
</div> </div>
<div id="content"> <div id="content">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 52 KiB