Transistor Gijutsu, October 2014, Special Features Chapter 9, Software of the Function Generator トランジスタ技術2014年10月号 特集第9章のソフトウェア わがまま波形発生器のソフトウェア

Dependencies:   USBDevice mbed

Information

tg_201410s8_AD7714 トランジスタ技術 2014年 10月号 第9章のソフトウェア

Program for Section 9 in October. 2014 issue of the Transistor Gijutsu
(Japanese electronics magazine)

概要

このプログラムは、ソフトウエアDDSにより、任意の波形を出力(2ch)します。 特徴は次のとおりです。

  • PWM出力をDAコンバータとして利用します。
  • 周波数や波形、バースト条件などを個別に設定できる独立した出力を2チャネル持っています。
  • 周波数分解能0.023mHz
  • 周波数範囲0.023mHz~10kHz
  • 各チャネルにそれぞれ、波形の先頭で出力されるトリガ出力があります。
  • 出力波形を関数で定義できます。
  • 休止波数、出力波数、を設定することでバースト波形が出力できます。

ファイル

このソフトウエアは、次のファイルから構成されています。

  • DDS.cpp - DDSによる波形発生
  • main.cpp - main()関数

詳細については、10月号の記事および上記ファイル中のコメントを参照してください。

Committer:
Dance
Date:
Fri Aug 29 08:33:17 2014 +0000
Revision:
0:f1ecca559ec3
Transistor Gijutsu, October 2014, Special Features Chapter 9; ????????2014?10??????9????????

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Dance 0:f1ecca559ec3 1 /* Copyright (c) 2010-2011 mbed.org, MIT License
Dance 0:f1ecca559ec3 2 *
Dance 0:f1ecca559ec3 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
Dance 0:f1ecca559ec3 4 * and associated documentation files (the "Software"), to deal in the Software without
Dance 0:f1ecca559ec3 5 * restriction, including without limitation the rights to use, copy, modify, merge, publish,
Dance 0:f1ecca559ec3 6 * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
Dance 0:f1ecca559ec3 7 * Software is furnished to do so, subject to the following conditions:
Dance 0:f1ecca559ec3 8 *
Dance 0:f1ecca559ec3 9 * The above copyright notice and this permission notice shall be included in all copies or
Dance 0:f1ecca559ec3 10 * substantial portions of the Software.
Dance 0:f1ecca559ec3 11 *
Dance 0:f1ecca559ec3 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
Dance 0:f1ecca559ec3 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Dance 0:f1ecca559ec3 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
Dance 0:f1ecca559ec3 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Dance 0:f1ecca559ec3 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Dance 0:f1ecca559ec3 17 */
Dance 0:f1ecca559ec3 18
Dance 0:f1ecca559ec3 19 #ifndef USBMOUSEKEYBOARD_H
Dance 0:f1ecca559ec3 20 #define USBMOUSEKEYBOARD_H
Dance 0:f1ecca559ec3 21
Dance 0:f1ecca559ec3 22 #define REPORT_ID_KEYBOARD 1
Dance 0:f1ecca559ec3 23 #define REPORT_ID_MOUSE 2
Dance 0:f1ecca559ec3 24 #define REPORT_ID_VOLUME 3
Dance 0:f1ecca559ec3 25
Dance 0:f1ecca559ec3 26 #include "USBMouse.h"
Dance 0:f1ecca559ec3 27 #include "USBKeyboard.h"
Dance 0:f1ecca559ec3 28 #include "Stream.h"
Dance 0:f1ecca559ec3 29 #include "USBHID.h"
Dance 0:f1ecca559ec3 30
Dance 0:f1ecca559ec3 31 /**
Dance 0:f1ecca559ec3 32 * USBMouseKeyboard example
Dance 0:f1ecca559ec3 33 * @code
Dance 0:f1ecca559ec3 34 *
Dance 0:f1ecca559ec3 35 * #include "mbed.h"
Dance 0:f1ecca559ec3 36 * #include "USBMouseKeyboard.h"
Dance 0:f1ecca559ec3 37 *
Dance 0:f1ecca559ec3 38 * USBMouseKeyboard key_mouse;
Dance 0:f1ecca559ec3 39 *
Dance 0:f1ecca559ec3 40 * int main(void)
Dance 0:f1ecca559ec3 41 * {
Dance 0:f1ecca559ec3 42 * while(1)
Dance 0:f1ecca559ec3 43 * {
Dance 0:f1ecca559ec3 44 * key_mouse.move(20, 0);
Dance 0:f1ecca559ec3 45 * key_mouse.printf("Hello From MBED\r\n");
Dance 0:f1ecca559ec3 46 * wait(1);
Dance 0:f1ecca559ec3 47 * }
Dance 0:f1ecca559ec3 48 * }
Dance 0:f1ecca559ec3 49 * @endcode
Dance 0:f1ecca559ec3 50 *
Dance 0:f1ecca559ec3 51 *
Dance 0:f1ecca559ec3 52 * @code
Dance 0:f1ecca559ec3 53 *
Dance 0:f1ecca559ec3 54 * #include "mbed.h"
Dance 0:f1ecca559ec3 55 * #include "USBMouseKeyboard.h"
Dance 0:f1ecca559ec3 56 *
Dance 0:f1ecca559ec3 57 * USBMouseKeyboard key_mouse(ABS_MOUSE);
Dance 0:f1ecca559ec3 58 *
Dance 0:f1ecca559ec3 59 * int main(void)
Dance 0:f1ecca559ec3 60 * {
Dance 0:f1ecca559ec3 61 * while(1)
Dance 0:f1ecca559ec3 62 * {
Dance 0:f1ecca559ec3 63 * key_mouse.move(X_MAX_ABS/2, Y_MAX_ABS/2);
Dance 0:f1ecca559ec3 64 * key_mouse.printf("Hello from MBED\r\n");
Dance 0:f1ecca559ec3 65 * wait(1);
Dance 0:f1ecca559ec3 66 * }
Dance 0:f1ecca559ec3 67 * }
Dance 0:f1ecca559ec3 68 * @endcode
Dance 0:f1ecca559ec3 69 */
Dance 0:f1ecca559ec3 70 class USBMouseKeyboard: public USBHID, public Stream
Dance 0:f1ecca559ec3 71 {
Dance 0:f1ecca559ec3 72 public:
Dance 0:f1ecca559ec3 73
Dance 0:f1ecca559ec3 74 /**
Dance 0:f1ecca559ec3 75 * Constructor
Dance 0:f1ecca559ec3 76 *
Dance 0:f1ecca559ec3 77 * @param mouse_type Mouse type: ABS_MOUSE (absolute mouse) or REL_MOUSE (relative mouse) (default: REL_MOUSE)
Dance 0:f1ecca559ec3 78 * @param leds Leds bus: first: NUM_LOCK, second: CAPS_LOCK, third: SCROLL_LOCK
Dance 0:f1ecca559ec3 79 * @param vendor_id Your vendor_id (default: 0x1234)
Dance 0:f1ecca559ec3 80 * @param product_id Your product_id (default: 0x0001)
Dance 0:f1ecca559ec3 81 * @param product_release Your preoduct_release (default: 0x0001)
Dance 0:f1ecca559ec3 82 *
Dance 0:f1ecca559ec3 83 */
Dance 0:f1ecca559ec3 84 USBMouseKeyboard(MOUSE_TYPE mouse_type = REL_MOUSE, uint16_t vendor_id = 0x0021, uint16_t product_id = 0x0011, uint16_t product_release = 0x0001):
Dance 0:f1ecca559ec3 85 USBHID(0, 0, vendor_id, product_id, product_release, false)
Dance 0:f1ecca559ec3 86 {
Dance 0:f1ecca559ec3 87 lock_status = 0;
Dance 0:f1ecca559ec3 88 button = 0;
Dance 0:f1ecca559ec3 89 this->mouse_type = mouse_type;
Dance 0:f1ecca559ec3 90 connect();
Dance 0:f1ecca559ec3 91 };
Dance 0:f1ecca559ec3 92
Dance 0:f1ecca559ec3 93 /**
Dance 0:f1ecca559ec3 94 * Write a state of the mouse
Dance 0:f1ecca559ec3 95 *
Dance 0:f1ecca559ec3 96 * @param x x-axis position
Dance 0:f1ecca559ec3 97 * @param y y-axis position
Dance 0:f1ecca559ec3 98 * @param buttons buttons state (first bit represents MOUSE_LEFT, second bit MOUSE_RIGHT and third bit MOUSE_MIDDLE)
Dance 0:f1ecca559ec3 99 * @param z wheel state (>0 to scroll down, <0 to scroll up)
Dance 0:f1ecca559ec3 100 * @returns true if there is no error, false otherwise
Dance 0:f1ecca559ec3 101 */
Dance 0:f1ecca559ec3 102 bool update(int16_t x, int16_t y, uint8_t buttons, int8_t z);
Dance 0:f1ecca559ec3 103
Dance 0:f1ecca559ec3 104
Dance 0:f1ecca559ec3 105 /**
Dance 0:f1ecca559ec3 106 * Move the cursor to (x, y)
Dance 0:f1ecca559ec3 107 *
Dance 0:f1ecca559ec3 108 * @param x x-axis position
Dance 0:f1ecca559ec3 109 * @param y y-axis position
Dance 0:f1ecca559ec3 110 * @returns true if there is no error, false otherwise
Dance 0:f1ecca559ec3 111 */
Dance 0:f1ecca559ec3 112 bool move(int16_t x, int16_t y);
Dance 0:f1ecca559ec3 113
Dance 0:f1ecca559ec3 114 /**
Dance 0:f1ecca559ec3 115 * Press one or several buttons
Dance 0:f1ecca559ec3 116 *
Dance 0:f1ecca559ec3 117 * @param button button state (ex: press(MOUSE_LEFT))
Dance 0:f1ecca559ec3 118 * @returns true if there is no error, false otherwise
Dance 0:f1ecca559ec3 119 */
Dance 0:f1ecca559ec3 120 bool press(uint8_t button);
Dance 0:f1ecca559ec3 121
Dance 0:f1ecca559ec3 122 /**
Dance 0:f1ecca559ec3 123 * Release one or several buttons
Dance 0:f1ecca559ec3 124 *
Dance 0:f1ecca559ec3 125 * @param button button state (ex: release(MOUSE_LEFT))
Dance 0:f1ecca559ec3 126 * @returns true if there is no error, false otherwise
Dance 0:f1ecca559ec3 127 */
Dance 0:f1ecca559ec3 128 bool release(uint8_t button);
Dance 0:f1ecca559ec3 129
Dance 0:f1ecca559ec3 130 /**
Dance 0:f1ecca559ec3 131 * Double click (MOUSE_LEFT)
Dance 0:f1ecca559ec3 132 *
Dance 0:f1ecca559ec3 133 * @returns true if there is no error, false otherwise
Dance 0:f1ecca559ec3 134 */
Dance 0:f1ecca559ec3 135 bool doubleClick();
Dance 0:f1ecca559ec3 136
Dance 0:f1ecca559ec3 137 /**
Dance 0:f1ecca559ec3 138 * Click
Dance 0:f1ecca559ec3 139 *
Dance 0:f1ecca559ec3 140 * @param button state of the buttons ( ex: clic(MOUSE_LEFT))
Dance 0:f1ecca559ec3 141 * @returns true if there is no error, false otherwise
Dance 0:f1ecca559ec3 142 */
Dance 0:f1ecca559ec3 143 bool click(uint8_t button);
Dance 0:f1ecca559ec3 144
Dance 0:f1ecca559ec3 145 /**
Dance 0:f1ecca559ec3 146 * Scrolling
Dance 0:f1ecca559ec3 147 *
Dance 0:f1ecca559ec3 148 * @param z value of the wheel (>0 to go down, <0 to go up)
Dance 0:f1ecca559ec3 149 * @returns true if there is no error, false otherwise
Dance 0:f1ecca559ec3 150 */
Dance 0:f1ecca559ec3 151 bool scroll(int8_t z);
Dance 0:f1ecca559ec3 152
Dance 0:f1ecca559ec3 153 /**
Dance 0:f1ecca559ec3 154 * To send a character defined by a modifier(CTRL, SHIFT, ALT) and the key
Dance 0:f1ecca559ec3 155 *
Dance 0:f1ecca559ec3 156 * @code
Dance 0:f1ecca559ec3 157 * //To send CTRL + s (save)
Dance 0:f1ecca559ec3 158 * keyboard.keyCode('s', KEY_CTRL);
Dance 0:f1ecca559ec3 159 * @endcode
Dance 0:f1ecca559ec3 160 *
Dance 0:f1ecca559ec3 161 * @param modifier bit 0: KEY_CTRL, bit 1: KEY_SHIFT, bit 2: KEY_ALT (default: 0)
Dance 0:f1ecca559ec3 162 * @param key character to send
Dance 0:f1ecca559ec3 163 * @returns true if there is no error, false otherwise
Dance 0:f1ecca559ec3 164 */
Dance 0:f1ecca559ec3 165 bool keyCode(uint8_t key, uint8_t modifier = 0);
Dance 0:f1ecca559ec3 166
Dance 0:f1ecca559ec3 167 /**
Dance 0:f1ecca559ec3 168 * Send a character
Dance 0:f1ecca559ec3 169 *
Dance 0:f1ecca559ec3 170 * @param c character to be sent
Dance 0:f1ecca559ec3 171 * @returns true if there is no error, false otherwise
Dance 0:f1ecca559ec3 172 */
Dance 0:f1ecca559ec3 173 virtual int _putc(int c);
Dance 0:f1ecca559ec3 174
Dance 0:f1ecca559ec3 175 /**
Dance 0:f1ecca559ec3 176 * Control media keys
Dance 0:f1ecca559ec3 177 *
Dance 0:f1ecca559ec3 178 * @param key media key pressed (KEY_NEXT_TRACK, KEY_PREVIOUS_TRACK, KEY_STOP, KEY_PLAY_PAUSE, KEY_MUTE, KEY_VOLUME_UP, KEY_VOLUME_DOWN)
Dance 0:f1ecca559ec3 179 * @returns true if there is no error, false otherwise
Dance 0:f1ecca559ec3 180 */
Dance 0:f1ecca559ec3 181 bool mediaControl(MEDIA_KEY key);
Dance 0:f1ecca559ec3 182
Dance 0:f1ecca559ec3 183 /**
Dance 0:f1ecca559ec3 184 * Read status of lock keys. Useful to switch-on/off leds according to key pressed. Only the first three bits of the result is important:
Dance 0:f1ecca559ec3 185 * - First bit: NUM_LOCK
Dance 0:f1ecca559ec3 186 * - Second bit: CAPS_LOCK
Dance 0:f1ecca559ec3 187 * - Third bit: SCROLL_LOCK
Dance 0:f1ecca559ec3 188 *
Dance 0:f1ecca559ec3 189 * @returns status of lock keys
Dance 0:f1ecca559ec3 190 */
Dance 0:f1ecca559ec3 191 uint8_t lockStatus();
Dance 0:f1ecca559ec3 192
Dance 0:f1ecca559ec3 193 /*
Dance 0:f1ecca559ec3 194 * To define the report descriptor. Warning: this method has to store the length of the report descriptor in reportLength.
Dance 0:f1ecca559ec3 195 *
Dance 0:f1ecca559ec3 196 * @returns pointer to the report descriptor
Dance 0:f1ecca559ec3 197 */
Dance 0:f1ecca559ec3 198 virtual uint8_t * reportDesc();
Dance 0:f1ecca559ec3 199
Dance 0:f1ecca559ec3 200 /*
Dance 0:f1ecca559ec3 201 * Called when a data is received on the OUT endpoint. Useful to switch on LED of LOCK keys
Dance 0:f1ecca559ec3 202 *
Dance 0:f1ecca559ec3 203 * @returns if handle by subclass, return true
Dance 0:f1ecca559ec3 204 */
Dance 0:f1ecca559ec3 205 virtual bool EP1_OUT_callback();
Dance 0:f1ecca559ec3 206
Dance 0:f1ecca559ec3 207
Dance 0:f1ecca559ec3 208 private:
Dance 0:f1ecca559ec3 209 bool mouseWrite(int8_t x, int8_t y, uint8_t buttons, int8_t z);
Dance 0:f1ecca559ec3 210 MOUSE_TYPE mouse_type;
Dance 0:f1ecca559ec3 211 uint8_t button;
Dance 0:f1ecca559ec3 212 bool mouseSend(int8_t x, int8_t y, uint8_t buttons, int8_t z);
Dance 0:f1ecca559ec3 213
Dance 0:f1ecca559ec3 214 uint8_t lock_status;
Dance 0:f1ecca559ec3 215
Dance 0:f1ecca559ec3 216 //dummy otherwise it doesn't compile (we must define all methods of an abstract class)
Dance 0:f1ecca559ec3 217 virtual int _getc() { return -1;}
Dance 0:f1ecca559ec3 218 };
Dance 0:f1ecca559ec3 219
Dance 0:f1ecca559ec3 220 #endif