-name = 'sam3x-ek_codec preset'
\ No newline at end of file
+name = 'Simple WAV player and recorder.'
+description="""
+<h2>Overview</h2>
+<p>
+This example application demonstrates how to make simple wav player, using WM8731 audio codec.
+<\p>
+<p>
+With the application we could explore the file on the SD card and start streaming pressing
+<b>Right button</b>, and to stop it by re-pressing the same button. While to record one stream
+follow the instruction on display, and then we can play it using the player menu.
+All wav file should be encoded in 16bit PCM, 2 Channel, 44100Hz.
+<\p>
+"""
-name = 'sam3x-ek_http_server preset'
\ No newline at end of file
+name = 'Simple HTTP server'
+description="""
+<h2>Overview</h2>
+<p>
+This example application demonstrates the usage of the lwIP TCP/IP stack with
+BeRTOS.
+<\p>
+<p>
+The DHCP protocol is used to obtain an IP address from an external DHCP server
+connected via ethernet.
+<\p>
+<p>
+The server reply to the client request sending the page that match the file stored on SD
+Card. If the SD or file is not preset, the server reply with header 404 FILE NOT found,
+and send harcoded html page that report the occured error.
+</p>
+<p>
+The BeRTOS simple HTTP server can reply the internal status or other things that the user wants, like: temperature,
+local ip, etc, to do this the client can load special pages that match an harcoded callbacks, where it return to client
+sending JSON string.
+</p>
+"""
-name = 'sam3x-ek_sd_bootloader preset'
\ No newline at end of file
+name = 'SD bootloader'
+description="""
+<h2>Overview</h2>
+<p>
+This example application demonstrates how to make simple bootloader with BeRTOS.
+<\p>
+<p>
+The bootloader start every time we reset the board, and check if SD card if present.
+If the SD is present the bootloader find on file system (FAT) the file named <b>firmware.bin</b>,
+and make simple check if the board need to be flashed. After that the bootloader jump to flashed application.
+</p>
+"""