備忘録

備忘録


6 comments on 備忘録:

30 Jun 2014

mbedとWindowsPCでSerial通信を行う場合は、Windows serial configurationページを参照すること。 https://mbed.org/handbook/Windows-serial-configuration

30 Jun 2014

LPC1768のADCサンプルレートは200KHz 12-bit/8-ch Analog/Digital Converter (ADC) with conversion rates up to 200 kHz

18 Dec 2017

Headings

Heading 1

Heading 2

Heading 3

Styling bold text, italic text, monospaced text underlined text, strikethrough text superscript text, subscript text Lists

  • List Item 1
  • List Item 2
  1. Numbered List Item 2.1 Links WikiPage http://mbed.org More about SPI Upverter embed (hint - use the unique id found in the embed code) Code (hint - publishing your code and linking to it makes it easier to import your program)

include the mbed library with this snippet

#include "mbed.h"

Linking to a program

Import programSerialBuffer

Simple example of reading a single character and a series of characters in to a buffer from a serial port

Upverter embed (hint - use the unique id found in the embed code) Team embed example

Deprecated This team is no longer maintained, please use: https://github.com/ARMmbed/mbed-mqtt instead.
Component embed example
AX-12 Servo motor
Table of Contents is included by default, to disable put this snippet on the page. Blocks

Quote:

Can I markup a quote, help or warning block?

Images /static/img/mbed.gif http://mbed.org/static/img/mbed.gif /static/img/mbed.gif /static/img/mbed.gif Gallery size argument can be either small or medium, default is large

Videos

18 Dec 2017

計算 ADC12bit = 4096/3.3V ±10V -> 20Vp-p Gain:1/6 Center:1.65V 20V/4096 = 4.8828mV -> 0.5%err 

19 Dec 2017

一つのmbedのハードウェアを制御しうるライブラリを複数の個別ファイルからアクセスするときの注意点 クラスライブラリの宣言文はヘッダファイルではなく、プログラム本体の最上位に書き込むこと。 ヘッダファイルに書き込むと、プログラムの作り方的に複数回のクラス呼び出しを行いエラーになる。

10 Jun 2019

Serial通信の際に、PC受信データの順番が変わってしまう現象について Serial Com(USBTX, USBRX)とし

printf("1行目\r\n"); com.printf("2行目\r\n"); とすると、PC側では 2行目 1行目 と表示される。

Please log in to post comments.