うおーるぼっとをWiiリモコンでコントロールする新しいプログラムです。 以前のものより、Wiiリモコンが早く繋がる様になりました。 It is a program which controls A with the Wii remote. ※ A Bluetooth dongle and a Wii remote control are needed.

Dependencies:   USBHost mbed FATFileSystem mbed-rtos

Committer:
jksoft
Date:
Mon Jun 10 16:01:50 2013 +0000
Revision:
0:fccb789424fc
1.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 0:fccb789424fc 1 /*
jksoft 0:fccb789424fc 2 * Copyright (C) 2009 by Matthias Ringwald
jksoft 0:fccb789424fc 3 *
jksoft 0:fccb789424fc 4 * Redistribution and use in source and binary forms, with or without
jksoft 0:fccb789424fc 5 * modification, are permitted provided that the following conditions
jksoft 0:fccb789424fc 6 * are met:
jksoft 0:fccb789424fc 7 *
jksoft 0:fccb789424fc 8 * 1. Redistributions of source code must retain the above copyright
jksoft 0:fccb789424fc 9 * notice, this list of conditions and the following disclaimer.
jksoft 0:fccb789424fc 10 * 2. Redistributions in binary form must reproduce the above copyright
jksoft 0:fccb789424fc 11 * notice, this list of conditions and the following disclaimer in the
jksoft 0:fccb789424fc 12 * documentation and/or other materials provided with the distribution.
jksoft 0:fccb789424fc 13 * 3. Neither the name of the copyright holders nor the names of
jksoft 0:fccb789424fc 14 * contributors may be used to endorse or promote products derived
jksoft 0:fccb789424fc 15 * from this software without specific prior written permission.
jksoft 0:fccb789424fc 16 *
jksoft 0:fccb789424fc 17 * THIS SOFTWARE IS PROVIDED BY MATTHIAS RINGWALD AND CONTRIBUTORS
jksoft 0:fccb789424fc 18 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
jksoft 0:fccb789424fc 19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
jksoft 0:fccb789424fc 20 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
jksoft 0:fccb789424fc 21 * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
jksoft 0:fccb789424fc 22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
jksoft 0:fccb789424fc 23 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
jksoft 0:fccb789424fc 24 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
jksoft 0:fccb789424fc 25 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
jksoft 0:fccb789424fc 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
jksoft 0:fccb789424fc 27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
jksoft 0:fccb789424fc 28 * SUCH DAMAGE.
jksoft 0:fccb789424fc 29 *
jksoft 0:fccb789424fc 30 */
jksoft 0:fccb789424fc 31
jksoft 0:fccb789424fc 32 /*
jksoft 0:fccb789424fc 33 * linked_list.h
jksoft 0:fccb789424fc 34 *
jksoft 0:fccb789424fc 35 * Created by Matthias Ringwald on 7/13/09.
jksoft 0:fccb789424fc 36 */
jksoft 0:fccb789424fc 37
jksoft 0:fccb789424fc 38 #pragma once
jksoft 0:fccb789424fc 39
jksoft 0:fccb789424fc 40 #if defined __cplusplus
jksoft 0:fccb789424fc 41 extern "C" {
jksoft 0:fccb789424fc 42 #endif
jksoft 0:fccb789424fc 43
jksoft 0:fccb789424fc 44 typedef struct linked_item {
jksoft 0:fccb789424fc 45 struct linked_item *next; // <-- next element in list, or NULL
jksoft 0:fccb789424fc 46 void *user_data; // <-- pointer to struct base
jksoft 0:fccb789424fc 47 } linked_item_t;
jksoft 0:fccb789424fc 48
jksoft 0:fccb789424fc 49 typedef linked_item_t * linked_list_t;
jksoft 0:fccb789424fc 50
jksoft 0:fccb789424fc 51 void linked_item_set_user(linked_item_t *item, void *user_data); // <-- set user data
jksoft 0:fccb789424fc 52 void * linked_item_get_user(linked_item_t *item); // <-- get user data
jksoft 0:fccb789424fc 53 int linked_list_empty(linked_list_t * list);
jksoft 0:fccb789424fc 54 void linked_list_add(linked_list_t * list, linked_item_t *item); // <-- add item to list as first element
jksoft 0:fccb789424fc 55 void linked_list_add_tail(linked_list_t * list, linked_item_t *item); // <-- add item to list as last element
jksoft 0:fccb789424fc 56 int linked_list_remove(linked_list_t * list, linked_item_t *item); // <-- remove item from list
jksoft 0:fccb789424fc 57 linked_item_t * linked_list_get_last_item(linked_list_t * list); // <-- find the last item in the list
jksoft 0:fccb789424fc 58
jksoft 0:fccb789424fc 59 void test_linked_list(void);
jksoft 0:fccb789424fc 60
jksoft 0:fccb789424fc 61 #if defined __cplusplus
jksoft 0:fccb789424fc 62 }
jksoft 0:fccb789424fc 63 #endif