SDG+USBHost(Mouse) Sample

Dependencies:   Sound_Generator USBHost_custom

Fork of SDG_Mouse_Sample by GR-PEACH_producer_meeting

Information

Japanese version is available in lower part of this page.
このページの後半に日本語版が用意されています.

What is this?

This program is a demonstration that sounds the sound by mouse operation by using USBHost(Mouse) and Sound Generator.

Settings

Close JP3 of GR-PEACH.
/media/uploads/RyoheiHagimoto/sdg-mouse.jpg

Operation

operationeffect
Right clickSounds
Left clickReset to base tone (C)
Moves the mouse to the rightLower the sound
Moves the mouse to the leftHigher the sound
Center cursorAdjust the sensitivity.
Reset the reference value in the click.

Others

The default setting of serial communication (baud rate etc.) in mbed is shown the following link.
Please refer to the link and change the settings of your PC terminal software.
The default value of baud rate in mbed is 9600, and this application uses baud rate 9600.
https://developer.mbed.org/teams/Renesas/wiki/GR-PEACH-Getting-Started#install-the-usb-serial-communication


概要

このプログラムは、USBHost(Mouse) + Sound Generatorで、マウス操作による擬似笛デモです。

設定

GR-PEACHのJP3をショートする必要があります。
/media/uploads/RyoheiHagimoto/sdg-mouse.jpg

操作方法

操作内容
右クリック音出力開始
左クリック基準音(ド)にリセット
マウス右移動高音になります
マウス左移動低音になります
センターカーソル音高低の変化量調整(クリックで基準値にリセット)

Others

mbedのシリアル通信(ボーレート等)のデフォルト設定は以下のリンクに示しています。
リンクを参考に、お使いのPCターミナルソフトの設定を変更して下さい。
mbedでのボーレートのデフォルト値は9600で、このサンプルではボーレート9600を使います。
https://developer.mbed.org/teams/Renesas/wiki/GR-PEACH-Getting-Started#install-the-usb-serial-communication

Committer:
mbed_official
Date:
Mon Jan 19 14:30:37 2015 +0000
Revision:
27:4206883f4cb7
Synchronized with git revision 0ab8d2e6b3d884137dcb5c62d29a07abe132bac7

Full URL: https://github.com/mbedmicro/mbed/commit/0ab8d2e6b3d884137dcb5c62d29a07abe132bac7/

RZ_A1H - Implement some USB functions and fix some bugs about USBHost common codes.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 27:4206883f4cb7 1 /*******************************************************************************
mbed_official 27:4206883f4cb7 2 * DISCLAIMER
mbed_official 27:4206883f4cb7 3 * This software is supplied by Renesas Electronics Corporation and is only
mbed_official 27:4206883f4cb7 4 * intended for use with Renesas products. No other uses are authorized. This
mbed_official 27:4206883f4cb7 5 * software is owned by Renesas Electronics Corporation and is protected under
mbed_official 27:4206883f4cb7 6 * all applicable laws, including copyright laws.
mbed_official 27:4206883f4cb7 7 * THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
mbed_official 27:4206883f4cb7 8 * THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
mbed_official 27:4206883f4cb7 9 * LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
mbed_official 27:4206883f4cb7 10 * AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
mbed_official 27:4206883f4cb7 11 * TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
mbed_official 27:4206883f4cb7 12 * ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
mbed_official 27:4206883f4cb7 13 * FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
mbed_official 27:4206883f4cb7 14 * ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
mbed_official 27:4206883f4cb7 15 * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
mbed_official 27:4206883f4cb7 16 * Renesas reserves the right, without notice, to make changes to this software
mbed_official 27:4206883f4cb7 17 * and to discontinue the availability of this software. By using this software,
mbed_official 27:4206883f4cb7 18 * you agree to the additional terms and conditions found by accessing the
mbed_official 27:4206883f4cb7 19 * following link:
mbed_official 27:4206883f4cb7 20 * http://www.renesas.com/disclaimer
mbed_official 27:4206883f4cb7 21 * Copyright (C) 2012 - 2014 Renesas Electronics Corporation. All rights reserved.
mbed_official 27:4206883f4cb7 22 *******************************************************************************/
mbed_official 27:4206883f4cb7 23 /*******************************************************************************
mbed_official 27:4206883f4cb7 24 * File Name : usb0_host_api.h
mbed_official 27:4206883f4cb7 25 * $Rev: 1116 $
mbed_official 27:4206883f4cb7 26 * $Date:: 2014-07-09 16:29:19 +0900#$
mbed_official 27:4206883f4cb7 27 * Description : RZ/A1H R7S72100 USB Sample Program
mbed_official 27:4206883f4cb7 28 *******************************************************************************/
mbed_official 27:4206883f4cb7 29 #ifndef USB0_HOST_API_H
mbed_official 27:4206883f4cb7 30 #define USB0_HOST_API_H
mbed_official 27:4206883f4cb7 31
mbed_official 27:4206883f4cb7 32
mbed_official 27:4206883f4cb7 33 /*******************************************************************************
mbed_official 27:4206883f4cb7 34 Typedef definitions
mbed_official 27:4206883f4cb7 35 *******************************************************************************/
mbed_official 27:4206883f4cb7 36
mbed_official 27:4206883f4cb7 37
mbed_official 27:4206883f4cb7 38 /*******************************************************************************
mbed_official 27:4206883f4cb7 39 Macro definitions
mbed_official 27:4206883f4cb7 40 *******************************************************************************/
mbed_official 27:4206883f4cb7 41
mbed_official 27:4206883f4cb7 42
mbed_official 27:4206883f4cb7 43 /*******************************************************************************
mbed_official 27:4206883f4cb7 44 Variable Externs
mbed_official 27:4206883f4cb7 45 *******************************************************************************/
mbed_official 27:4206883f4cb7 46
mbed_official 27:4206883f4cb7 47
mbed_official 27:4206883f4cb7 48 /*******************************************************************************
mbed_official 27:4206883f4cb7 49 Functions Prototypes
mbed_official 27:4206883f4cb7 50 *******************************************************************************/
mbed_official 27:4206883f4cb7 51 void usb0_host_interrupt(uint32_t int_sense);
mbed_official 27:4206883f4cb7 52 void usb0_host_dma_interrupt_d0fifo(uint32_t int_sense);
mbed_official 27:4206883f4cb7 53 void usb0_host_dma_interrupt_d1fifo(uint32_t int_sense);
mbed_official 27:4206883f4cb7 54
mbed_official 27:4206883f4cb7 55 uint16_t usb0_api_host_init(uint8_t int_level, uint16_t mode, uint16_t clockmode);
mbed_official 27:4206883f4cb7 56 int32_t usb0_api_host_enumeration(uint16_t devadr);
mbed_official 27:4206883f4cb7 57 int32_t usb0_api_host_detach(void);
mbed_official 27:4206883f4cb7 58 int32_t usb0_api_host_data_in(uint16_t devadr, uint16_t Pipe, uint32_t Size, uint8_t *data_buf);
mbed_official 27:4206883f4cb7 59 int32_t usb0_api_host_data_out(uint16_t devadr, uint16_t Pipe, uint32_t Size, uint8_t *data_buf);
mbed_official 27:4206883f4cb7 60 int32_t usb0_api_host_control_transfer(uint16_t devadr, uint16_t Req, uint16_t Val, uint16_t Indx, uint16_t Len, uint8_t *Buf);
mbed_official 27:4206883f4cb7 61 int32_t usb0_api_host_set_endpoint(uint16_t devadr, USB_HOST_CFG_PIPETBL_t *user_table, uint8_t *configdescriptor);
mbed_official 27:4206883f4cb7 62 int32_t usb0_api_host_clear_endpoint(USB_HOST_CFG_PIPETBL_t *user_table);
mbed_official 27:4206883f4cb7 63 int32_t usb0_api_host_clear_endpoint_pipe(uint16_t pipe_sel, USB_HOST_CFG_PIPETBL_t *user_table);
mbed_official 27:4206883f4cb7 64 uint16_t usb0_api_host_SetEndpointTable(uint16_t devadr, USB_HOST_CFG_PIPETBL_t *user_table, uint8_t* Table);
mbed_official 27:4206883f4cb7 65 int32_t usb0_api_host_data_count(uint16_t pipe, uint32_t *data_count);
mbed_official 27:4206883f4cb7 66
mbed_official 27:4206883f4cb7 67 int32_t usb0_api_host_GetDeviceDescriptor(uint16_t devadr, uint16_t size, uint8_t *buf);
mbed_official 27:4206883f4cb7 68 int32_t usb0_api_host_GetConfigDescriptor(uint16_t devadr, uint16_t size, uint8_t *buf);
mbed_official 27:4206883f4cb7 69 int32_t usb0_api_host_SetConfig(uint16_t devadr, uint16_t confignum);
mbed_official 27:4206883f4cb7 70 int32_t usb0_api_host_SetInterface(uint16_t devadr, uint16_t interface_alt, uint16_t interface_index);
mbed_official 27:4206883f4cb7 71 int32_t usb0_api_host_ClearStall(uint16_t devadr, uint16_t ep_dir);
mbed_official 27:4206883f4cb7 72 uint16_t usb0_api_host_GetUsbDeviceState(void);
mbed_official 27:4206883f4cb7 73
mbed_official 27:4206883f4cb7 74 void usb0_api_host_elt_4_4(void);
mbed_official 27:4206883f4cb7 75 void usb0_api_host_elt_4_5(void);
mbed_official 27:4206883f4cb7 76 void usb0_api_host_elt_4_6(void);
mbed_official 27:4206883f4cb7 77 void usb0_api_host_elt_4_7(void);
mbed_official 27:4206883f4cb7 78 void usb0_api_host_elt_4_8(void);
mbed_official 27:4206883f4cb7 79 void usb0_api_host_elt_4_9(void);
mbed_official 27:4206883f4cb7 80 void usb0_api_host_elt_get_desc(void);
mbed_official 27:4206883f4cb7 81
mbed_official 27:4206883f4cb7 82 void usb0_host_EL_ModeInit(void);
mbed_official 27:4206883f4cb7 83 void usb0_host_EL_SetUACT(void);
mbed_official 27:4206883f4cb7 84 void usb0_host_EL_ClearUACT(void);
mbed_official 27:4206883f4cb7 85 void usb0_host_EL_SetTESTMODE(uint16_t mode);
mbed_official 27:4206883f4cb7 86 void usb0_host_EL_ClearNRDYSTS(uint16_t pipe);
mbed_official 27:4206883f4cb7 87 uint16_t usb0_host_EL_GetINTSTS1(void);
mbed_official 27:4206883f4cb7 88 void usb0_host_EL_UsbBusReset(void);
mbed_official 27:4206883f4cb7 89 void usb0_host_EL_UsbAttach(void);
mbed_official 27:4206883f4cb7 90 void usb0_host_EL_SetupStage(uint16_t Req, uint16_t Val, uint16_t Indx, uint16_t Len);
mbed_official 27:4206883f4cb7 91 void usb0_host_EL_StatusStage(void);
mbed_official 27:4206883f4cb7 92 void usb0_host_EL_CtrlReadStart(uint32_t Bsize, uint8_t *Table);
mbed_official 27:4206883f4cb7 93 int32_t usb0_host_EL_UsbSuspend(void);
mbed_official 27:4206883f4cb7 94 int32_t usb0_host_EL_UsbResume(void);
mbed_official 27:4206883f4cb7 95
mbed_official 27:4206883f4cb7 96 #if 0 /* prototype in devdrv_usb_host_api.h */
mbed_official 27:4206883f4cb7 97 uint16_t Userdef_USB_usb0_host_d0fifo_dmaintid(void);
mbed_official 27:4206883f4cb7 98 uint16_t Userdef_USB_usb0_host_d1fifo_dmaintid(void);
mbed_official 27:4206883f4cb7 99 void Userdef_USB_usb0_host_attach(void);
mbed_official 27:4206883f4cb7 100 void Userdef_USB_usb0_host_detach(void);
mbed_official 27:4206883f4cb7 101 void Userdef_USB_usb0_host_delay_1ms(void);
mbed_official 27:4206883f4cb7 102 void Userdef_USB_usb0_host_delay_xms(uint32_t msec);
mbed_official 27:4206883f4cb7 103 void Userdef_USB_usb0_host_delay_10us(uint32_t usec);
mbed_official 27:4206883f4cb7 104 void Userdef_USB_usb0_host_delay_500ns(void);
mbed_official 27:4206883f4cb7 105 void Userdef_USB_usb0_host_start_dma(USB_HOST_DMA_t *dma, uint16_t dfacc);
mbed_official 27:4206883f4cb7 106 uint32_t Userdef_USB_usb0_host_stop_dma0(void);
mbed_official 27:4206883f4cb7 107 uint32_t Userdef_USB_usb0_host_stop_dma1(void);
mbed_official 27:4206883f4cb7 108 #endif
mbed_official 27:4206883f4cb7 109
mbed_official 27:4206883f4cb7 110 #endif /* USB0_HOST_API_H */
mbed_official 27:4206883f4cb7 111
mbed_official 27:4206883f4cb7 112 /* End of File */