![](/media/cache/profiles/5f14615696649541a025d3d0f8e0447f.jpg.50x50_q85.jpg)
ワークショップ用のサンプル
Fork of MilkcocoaSampleESP8266 by
SoftSerialSendOnly/SoftSerialSendOnry.cpp
- Committer:
- jksoft
- Date:
- 2016-02-27
- Revision:
- 2:d2e4e7ce7a65
- Parent:
- 0:82d5445a9461
File content as of revision 2:d2e4e7ce7a65:
#include "SoftSerialSendOnry.h" SoftSerialSendOnry::SoftSerialSendOnry(PinName TX, const char* name) { tx_en = false; if (TX != NC) { tx = new DigitalOut(TX); tx_en = true; tx->write(1); tx_bit = -1; txticker.attach(this, &SoftSerialSendOnry::tx_handler); } baud(9600); format(); } SoftSerialSendOnry::~SoftSerialSendOnry() { if (tx_en) delete(tx); } void SoftSerialSendOnry::baud(int baudrate) { bit_period = 1000000 / baudrate; } void SoftSerialSendOnry::format(int bits, Parity parity, int stop_bits) { _bits = bits; _parity = parity; _stop_bits = stop_bits; _total_bits = 1 + _bits + _stop_bits + (bool)_parity; } int SoftSerialSendOnry::_getc() { return(0); }