ワークショップ用のプログラム

Dependencies:   Milkcocoa mbed

Committer:
jksoft
Date:
Thu Sep 22 00:49:42 2016 +0000
Revision:
0:d0b3a5d1ba28
????????

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 0:d0b3a5d1ba28 1 #ifndef SOFTSERIAL_SEND_ONRY_H
jksoft 0:d0b3a5d1ba28 2 #define SOFTSERIAL_SEND_ONRY_H
jksoft 0:d0b3a5d1ba28 3
jksoft 0:d0b3a5d1ba28 4 #include "mbed.h"
jksoft 0:d0b3a5d1ba28 5 #include "SoftSerial_Ticker.h"
jksoft 0:d0b3a5d1ba28 6 /** A software serial implementation
jksoft 0:d0b3a5d1ba28 7 *
jksoft 0:d0b3a5d1ba28 8 */
jksoft 0:d0b3a5d1ba28 9 class SoftSerialSendOnry: public Stream {
jksoft 0:d0b3a5d1ba28 10
jksoft 0:d0b3a5d1ba28 11 public:
jksoft 0:d0b3a5d1ba28 12 /**
jksoft 0:d0b3a5d1ba28 13 * Constructor
jksoft 0:d0b3a5d1ba28 14 *
jksoft 0:d0b3a5d1ba28 15 * @param TX Name of the TX pin, NC for not connected
jksoft 0:d0b3a5d1ba28 16 * @param name Name of the connection
jksoft 0:d0b3a5d1ba28 17 */
jksoft 0:d0b3a5d1ba28 18 SoftSerialSendOnry(PinName TX, const char* name = NULL);
jksoft 0:d0b3a5d1ba28 19 virtual ~SoftSerialSendOnry();
jksoft 0:d0b3a5d1ba28 20
jksoft 0:d0b3a5d1ba28 21 /** Set the baud rate of the serial port
jksoft 0:d0b3a5d1ba28 22 *
jksoft 0:d0b3a5d1ba28 23 * @param baudrate The baudrate of the serial port (default = 9600).
jksoft 0:d0b3a5d1ba28 24 */
jksoft 0:d0b3a5d1ba28 25 void baud(int baudrate);
jksoft 0:d0b3a5d1ba28 26
jksoft 0:d0b3a5d1ba28 27 enum Parity {
jksoft 0:d0b3a5d1ba28 28 None = 0,
jksoft 0:d0b3a5d1ba28 29 Odd,
jksoft 0:d0b3a5d1ba28 30 Even,
jksoft 0:d0b3a5d1ba28 31 Forced1,
jksoft 0:d0b3a5d1ba28 32 Forced0
jksoft 0:d0b3a5d1ba28 33 };
jksoft 0:d0b3a5d1ba28 34
jksoft 0:d0b3a5d1ba28 35 enum IrqType {
jksoft 0:d0b3a5d1ba28 36 RxIrq = 0,
jksoft 0:d0b3a5d1ba28 37 TxIrq
jksoft 0:d0b3a5d1ba28 38 };
jksoft 0:d0b3a5d1ba28 39
jksoft 0:d0b3a5d1ba28 40 /** Set the transmission format used by the serial port
jksoft 0:d0b3a5d1ba28 41 *
jksoft 0:d0b3a5d1ba28 42 * @param bits The number of bits in a word (default = 8)
jksoft 0:d0b3a5d1ba28 43 * @param parity The parity used (SerialBase::None, SerialBase::Odd, SerialBase::Even, SerialBase::Forced1, SerialBase::Forced0; default = SerialBase::None)
jksoft 0:d0b3a5d1ba28 44 * @param stop The number of stop bits (default = 1)
jksoft 0:d0b3a5d1ba28 45 */
jksoft 0:d0b3a5d1ba28 46 void format(int bits=8, Parity parity=SoftSerialSendOnry::None, int stop_bits=1);
jksoft 0:d0b3a5d1ba28 47
jksoft 0:d0b3a5d1ba28 48 /** Determine if there is space available to write a character
jksoft 0:d0b3a5d1ba28 49 *
jksoft 0:d0b3a5d1ba28 50 * @returns
jksoft 0:d0b3a5d1ba28 51 * 1 if there is space to write a character,
jksoft 0:d0b3a5d1ba28 52 * 0 otherwise
jksoft 0:d0b3a5d1ba28 53 */
jksoft 0:d0b3a5d1ba28 54 int writeable();
jksoft 0:d0b3a5d1ba28 55
jksoft 0:d0b3a5d1ba28 56 /** Attach a function to call whenever a serial interrupt is generated
jksoft 0:d0b3a5d1ba28 57 *
jksoft 0:d0b3a5d1ba28 58 * @param fptr A pointer to a void function, or 0 to set as none
jksoft 0:d0b3a5d1ba28 59 * @param type Which serial interrupt to attach the member function to (Seriall::RxIrq for receive, TxIrq for transmit buffer empty)
jksoft 0:d0b3a5d1ba28 60 */
jksoft 0:d0b3a5d1ba28 61 void attach(void (*fptr)(void), IrqType type=RxIrq) {
jksoft 0:d0b3a5d1ba28 62 fpointer[type].attach(fptr);
jksoft 0:d0b3a5d1ba28 63 }
jksoft 0:d0b3a5d1ba28 64
jksoft 0:d0b3a5d1ba28 65 /** Attach a member function to call whenever a serial interrupt is generated
jksoft 0:d0b3a5d1ba28 66 *
jksoft 0:d0b3a5d1ba28 67 * @param tptr pointer to the object to call the member function on
jksoft 0:d0b3a5d1ba28 68 * @param mptr pointer to the member function to be called
jksoft 0:d0b3a5d1ba28 69 * @param type Which serial interrupt to attach the member function to (Seriall::RxIrq for receive, TxIrq for transmit buffer empty)
jksoft 0:d0b3a5d1ba28 70 */
jksoft 0:d0b3a5d1ba28 71 template<typename T>
jksoft 0:d0b3a5d1ba28 72 void attach(T* tptr, void (T::*mptr)(void), IrqType type=RxIrq) {
jksoft 0:d0b3a5d1ba28 73 fpointer[type].attach(tptr, mptr);
jksoft 0:d0b3a5d1ba28 74 }
jksoft 0:d0b3a5d1ba28 75
jksoft 0:d0b3a5d1ba28 76 /** Generate a break condition on the serial line
jksoft 0:d0b3a5d1ba28 77 */
jksoft 0:d0b3a5d1ba28 78 void send_break();
jksoft 0:d0b3a5d1ba28 79
jksoft 0:d0b3a5d1ba28 80 protected:
jksoft 0:d0b3a5d1ba28 81 DigitalOut *tx;
jksoft 0:d0b3a5d1ba28 82
jksoft 0:d0b3a5d1ba28 83 bool tx_en;
jksoft 0:d0b3a5d1ba28 84 int bit_period;
jksoft 0:d0b3a5d1ba28 85 int _bits, _stop_bits, _total_bits;
jksoft 0:d0b3a5d1ba28 86 Parity _parity;
jksoft 0:d0b3a5d1ba28 87
jksoft 0:d0b3a5d1ba28 88 FunctionPointer fpointer[2];
jksoft 0:d0b3a5d1ba28 89
jksoft 0:d0b3a5d1ba28 90 //tx
jksoft 0:d0b3a5d1ba28 91 void tx_handler(void);
jksoft 0:d0b3a5d1ba28 92 void prepare_tx(int c);
jksoft 0:d0b3a5d1ba28 93 FlexTicker txticker;
jksoft 0:d0b3a5d1ba28 94 int _char;
jksoft 0:d0b3a5d1ba28 95 volatile int tx_bit;
jksoft 0:d0b3a5d1ba28 96
jksoft 0:d0b3a5d1ba28 97
jksoft 0:d0b3a5d1ba28 98
jksoft 0:d0b3a5d1ba28 99 virtual int _getc();
jksoft 0:d0b3a5d1ba28 100 virtual int _putc(int c);
jksoft 0:d0b3a5d1ba28 101 };
jksoft 0:d0b3a5d1ba28 102
jksoft 0:d0b3a5d1ba28 103
jksoft 0:d0b3a5d1ba28 104 #endif
jksoft 0:d0b3a5d1ba28 105