Lab 1 Program C
Fork of mbed by
BusIn.h@5:62573be585e9, 2009-01-22 (annotated)
- Committer:
- simon.ford@mbed.co.uk
- Date:
- Thu Jan 22 18:32:40 2009 +0000
- Revision:
- 5:62573be585e9
- Parent:
- 4:5d1359a283bc
- Child:
- 11:1c1ebd0324fa
* Added initial RPC release
* Added RTC and helper functions
* Added read_u16()/write_u16() to AnalogIn/Out
* Ticker/Timeout timing fixed!
* mbedinfo() helper added
* error() and printf() added to replace DEBUG() and ERROR()
* DigitalIn supports methods on rise/fall
* SPI and Serial support NC
* LED1-4 also map to 1-4
* Timer object reset fixed
* SPI uses single mode
* SPI3 added
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
simon.ford@mbed.co.uk | 0:82220227f4fa | 1 | /* mbed Microcontroller Library - BusIn |
simon.ford@mbed.co.uk | 0:82220227f4fa | 2 | * Copyright (c) 2007-2008, sford |
simon.ford@mbed.co.uk | 0:82220227f4fa | 3 | */ |
simon.ford@mbed.co.uk | 0:82220227f4fa | 4 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 5 | #ifndef MBED_BUSIN_H |
simon.ford@mbed.co.uk | 0:82220227f4fa | 6 | #define MBED_BUSIN_H |
simon.ford@mbed.co.uk | 0:82220227f4fa | 7 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 8 | #include "Base.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 9 | #include "DigitalIn.h" |
simon.ford@mbed.co.uk | 0:82220227f4fa | 10 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 11 | namespace mbed { |
simon.ford@mbed.co.uk | 0:82220227f4fa | 12 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 13 | /* Class: BusIn |
simon.ford@mbed.co.uk | 0:82220227f4fa | 14 | * A digital input bus, used for reading the state of a collection of pins |
simon.ford@mbed.co.uk | 0:82220227f4fa | 15 | */ |
simon.ford@mbed.co.uk | 0:82220227f4fa | 16 | class BusIn : public Base { |
simon.ford@mbed.co.uk | 0:82220227f4fa | 17 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 18 | public: |
simon.ford@mbed.co.uk | 0:82220227f4fa | 19 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 20 | /* Group: Configuration Methods */ |
simon.ford@mbed.co.uk | 0:82220227f4fa | 21 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 22 | /* Constructor: BusIn |
simon.ford@mbed.co.uk | 0:82220227f4fa | 23 | * Create an BusIn, connected to the specified pins |
simon.ford@mbed.co.uk | 0:82220227f4fa | 24 | * |
simon.ford@mbed.co.uk | 0:82220227f4fa | 25 | * Variables: |
simon.ford@mbed.co.uk | 0:82220227f4fa | 26 | * p<n> - DigitalIn pin to connect to bus bit <n> (5-30, NOT_CONNECTED) |
simon.ford@mbed.co.uk | 0:82220227f4fa | 27 | * |
simon.ford@mbed.co.uk | 0:82220227f4fa | 28 | * Note: |
simon.ford@mbed.co.uk | 0:82220227f4fa | 29 | * It is only required to specify as many pin variables as is required |
simon.ford@mbed.co.uk | 0:82220227f4fa | 30 | * for the bus; the rest will default to NOT_CONNECTED |
simon.ford@mbed.co.uk | 0:82220227f4fa | 31 | */ |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 32 | BusIn(int p0, int p1 = NOT_CONNECTED, int p2 = NOT_CONNECTED, int p3 = NOT_CONNECTED, |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 33 | int p4 = NOT_CONNECTED, int p5 = NOT_CONNECTED, int p6 = NOT_CONNECTED, int p7 = NOT_CONNECTED, |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 34 | int p8 = NOT_CONNECTED, int p9 = NOT_CONNECTED, int p10 = NOT_CONNECTED, int p11 = NOT_CONNECTED, |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 35 | int p12 = NOT_CONNECTED, int p13 = NOT_CONNECTED, int p14 = NOT_CONNECTED, int p15 = NOT_CONNECTED, |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 36 | const char *name = NULL); |
simon.ford@mbed.co.uk | 5:62573be585e9 | 37 | |
simon.ford@mbed.co.uk | 5:62573be585e9 | 38 | BusIn(int pins[16], const char *name = NULL); |
simon.ford@mbed.co.uk | 0:82220227f4fa | 39 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 40 | virtual ~BusIn(); |
simon.ford@mbed.co.uk | 0:82220227f4fa | 41 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 42 | /* Group: Access Methods */ |
simon.ford@mbed.co.uk | 0:82220227f4fa | 43 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 44 | /* Function: read |
simon.ford@mbed.co.uk | 0:82220227f4fa | 45 | * Read the value of the input bus |
simon.ford@mbed.co.uk | 0:82220227f4fa | 46 | * |
simon.ford@mbed.co.uk | 0:82220227f4fa | 47 | * Variables: |
simon.ford@mbed.co.uk | 0:82220227f4fa | 48 | * returns - An integer with each bit corresponding to the value read from the associated DigitalIn pin |
simon.ford@mbed.co.uk | 0:82220227f4fa | 49 | */ |
simon.ford@mbed.co.uk | 0:82220227f4fa | 50 | int read(); |
simon.ford@mbed.co.uk | 0:82220227f4fa | 51 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 52 | /* Group: Access Method Shorthand */ |
simon.ford@mbed.co.uk | 0:82220227f4fa | 53 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 54 | /* Function: operator int() |
simon.ford@mbed.co.uk | 0:82220227f4fa | 55 | * A shorthand for <read> |
simon.ford@mbed.co.uk | 0:82220227f4fa | 56 | */ |
simon.ford@mbed.co.uk | 0:82220227f4fa | 57 | operator int(); |
simon.ford@mbed.co.uk | 4:5d1359a283bc | 58 | |
simon.ford@mbed.co.uk | 5:62573be585e9 | 59 | virtual const struct rpc_method *get_rpc_methods(); |
simon.ford@mbed.co.uk | 5:62573be585e9 | 60 | static struct rpc_class *get_rpc_class(); |
simon.ford@mbed.co.uk | 5:62573be585e9 | 61 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 62 | protected: |
simon.ford@mbed.co.uk | 0:82220227f4fa | 63 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 64 | DigitalIn* _pin[16]; |
simon.ford@mbed.co.uk | 5:62573be585e9 | 65 | |
simon.ford@mbed.co.uk | 5:62573be585e9 | 66 | static void construct(const char *arguments, char *res); |
simon.ford@mbed.co.uk | 0:82220227f4fa | 67 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 68 | }; |
simon.ford@mbed.co.uk | 0:82220227f4fa | 69 | |
simon.ford@mbed.co.uk | 0:82220227f4fa | 70 | } |
simon.ford@mbed.co.uk | 0:82220227f4fa | 71 | |
simon.ford@mbed.co.uk | 1:6b7f447ca868 | 72 | #endif |
simon.ford@mbed.co.uk | 1:6b7f447ca868 | 73 |