The first video game for the mbed video game console. The code utilizes the SimpleLib package developed by thomas@soete.org. For more information about the project and if you'd like to download the schematics and PCB design visit http://www.mbedgc.com/

Dependencies:   mbed

Committer:
jp
Date:
Sat Jul 09 15:47:27 2011 +0000
Revision:
0:31cd577d85a4
Initial release of Snake for the mbed Game Console.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jp 0:31cd577d85a4 1 /*
jp 0:31cd577d85a4 2 * Copyright or © or Copr. 2010, Thomas SOETE
jp 0:31cd577d85a4 3 *
jp 0:31cd577d85a4 4 * Author e-mail: thomas@soete.org
jp 0:31cd577d85a4 5 * Library website : http://mbed.org/users/Alkorin/libraries/SimpleLib/
jp 0:31cd577d85a4 6 *
jp 0:31cd577d85a4 7 * This software is governed by the CeCILL license under French law and
jp 0:31cd577d85a4 8 * abiding by the rules of distribution of free software. You can use,
jp 0:31cd577d85a4 9 * modify and/ or redistribute the software under the terms of the CeCILL
jp 0:31cd577d85a4 10 * license as circulated by CEA, CNRS and INRIA at the following URL
jp 0:31cd577d85a4 11 * "http://www.cecill.info".
jp 0:31cd577d85a4 12 *
jp 0:31cd577d85a4 13 * As a counterpart to the access to the source code and rights to copy,
jp 0:31cd577d85a4 14 * modify and redistribute granted by the license, users are provided only
jp 0:31cd577d85a4 15 * with a limited warranty and the software's author, the holder of the
jp 0:31cd577d85a4 16 * economic rights, and the successive licensors have only limited
jp 0:31cd577d85a4 17 * liability.
jp 0:31cd577d85a4 18 *
jp 0:31cd577d85a4 19 * In this respect, the user's attention is drawn to the risks associated
jp 0:31cd577d85a4 20 * with loading, using, modifying and/or developing or reproducing the
jp 0:31cd577d85a4 21 * software by the user in light of its specific status of free software,
jp 0:31cd577d85a4 22 * that may mean that it is complicated to manipulate, and that also
jp 0:31cd577d85a4 23 * therefore means that it is reserved for developers and experienced
jp 0:31cd577d85a4 24 * professionals having in-depth computer knowledge. Users are therefore
jp 0:31cd577d85a4 25 * encouraged to load and test the software's suitability as regards their
jp 0:31cd577d85a4 26 * requirements in conditions enabling the security of their systems and/or
jp 0:31cd577d85a4 27 * data to be ensured and, more generally, to use and operate it in the
jp 0:31cd577d85a4 28 * same conditions as regards security.
jp 0:31cd577d85a4 29 *
jp 0:31cd577d85a4 30 * The fact that you are presently reading this means that you have had
jp 0:31cd577d85a4 31 * knowledge of the CeCILL license and that you accept its terms.
jp 0:31cd577d85a4 32 */
jp 0:31cd577d85a4 33
jp 0:31cd577d85a4 34 #ifndef __SIMPLELIB_IP_H__
jp 0:31cd577d85a4 35 #define __SIMPLELIB_IP_H__
jp 0:31cd577d85a4 36
jp 0:31cd577d85a4 37 #include "ip.h"
jp 0:31cd577d85a4 38
jp 0:31cd577d85a4 39 typedef __packed struct {
jp 0:31cd577d85a4 40 unsigned char version:4;
jp 0:31cd577d85a4 41 unsigned char length:4;
jp 0:31cd577d85a4 42 unsigned char services;
jp 0:31cd577d85a4 43 uint16_t total_length;
jp 0:31cd577d85a4 44 uint16_t identification;
jp 0:31cd577d85a4 45 unsigned int flags:3;
jp 0:31cd577d85a4 46 unsigned fragment_offset:13;
jp 0:31cd577d85a4 47 unsigned char ttl;
jp 0:31cd577d85a4 48 unsigned char protocol;
jp 0:31cd577d85a4 49 uint16_t header_checksum;
jp 0:31cd577d85a4 50 unsigned char source[4];
jp 0:31cd577d85a4 51 unsigned char destination[4];
jp 0:31cd577d85a4 52 } s_ip;
jp 0:31cd577d85a4 53
jp 0:31cd577d85a4 54 typedef __packed struct {
jp 0:31cd577d85a4 55 ethernet_packet eth;
jp 0:31cd577d85a4 56 s_ip ip;
jp 0:31cd577d85a4 57 } ipv4_packet;
jp 0:31cd577d85a4 58 #define asIPV4(x) ((ipv4_packet*)(x))
jp 0:31cd577d85a4 59
jp 0:31cd577d85a4 60 #define PROTO_ICMP 0x01
jp 0:31cd577d85a4 61
jp 0:31cd577d85a4 62 typedef __packed struct {
jp 0:31cd577d85a4 63 ethernet_packet eth;
jp 0:31cd577d85a4 64 s_ip ip;
jp 0:31cd577d85a4 65 __packed struct {
jp 0:31cd577d85a4 66 unsigned char type;
jp 0:31cd577d85a4 67 unsigned char code;
jp 0:31cd577d85a4 68 uint16_t checksum;
jp 0:31cd577d85a4 69 uint16_t identifier;
jp 0:31cd577d85a4 70 uint16_t sequence_number;
jp 0:31cd577d85a4 71 unsigned char data[];
jp 0:31cd577d85a4 72 } icmp;
jp 0:31cd577d85a4 73 } icmp_packet;
jp 0:31cd577d85a4 74 #define asICMP(x) ((icmp_packet*)(x))
jp 0:31cd577d85a4 75
jp 0:31cd577d85a4 76 #define ICMP_REQUEST 0x08
jp 0:31cd577d85a4 77 #define ICMP_REPLY 0x00
jp 0:31cd577d85a4 78
jp 0:31cd577d85a4 79 #endif