mbed.h verzija za koristenje na predmetu PAI

Committer:
esokic
Date:
Tue Mar 10 09:51:52 2015 +0000
Revision:
0:05aad811ea07
mbed.h verzija od marta 2014, za koristenje na predmetu PAI

Who changed what in which revision?

UserRevisionLine numberNew contents of line
esokic 0:05aad811ea07 1 /* mbed Microcontroller Library
esokic 0:05aad811ea07 2 * Copyright (c) 2006-2013 ARM Limited
esokic 0:05aad811ea07 3 *
esokic 0:05aad811ea07 4 * Licensed under the Apache License, Version 2.0 (the "License");
esokic 0:05aad811ea07 5 * you may not use this file except in compliance with the License.
esokic 0:05aad811ea07 6 * You may obtain a copy of the License at
esokic 0:05aad811ea07 7 *
esokic 0:05aad811ea07 8 * http://www.apache.org/licenses/LICENSE-2.0
esokic 0:05aad811ea07 9 *
esokic 0:05aad811ea07 10 * Unless required by applicable law or agreed to in writing, software
esokic 0:05aad811ea07 11 * distributed under the License is distributed on an "AS IS" BASIS,
esokic 0:05aad811ea07 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
esokic 0:05aad811ea07 13 * See the License for the specific language governing permissions and
esokic 0:05aad811ea07 14 * limitations under the License.
esokic 0:05aad811ea07 15 */
esokic 0:05aad811ea07 16 #ifndef MBED_ETHERNET_API_H
esokic 0:05aad811ea07 17 #define MBED_ETHERNET_API_H
esokic 0:05aad811ea07 18
esokic 0:05aad811ea07 19 #include "device.h"
esokic 0:05aad811ea07 20
esokic 0:05aad811ea07 21 #if DEVICE_ETHERNET
esokic 0:05aad811ea07 22
esokic 0:05aad811ea07 23 #ifdef __cplusplus
esokic 0:05aad811ea07 24 extern "C" {
esokic 0:05aad811ea07 25 #endif
esokic 0:05aad811ea07 26
esokic 0:05aad811ea07 27 // Connection constants
esokic 0:05aad811ea07 28
esokic 0:05aad811ea07 29 int ethernet_init(void);
esokic 0:05aad811ea07 30 void ethernet_free(void);
esokic 0:05aad811ea07 31
esokic 0:05aad811ea07 32 // write size bytes from data to ethernet buffer
esokic 0:05aad811ea07 33 // return num bytes written
esokic 0:05aad811ea07 34 // or -1 if size is too big
esokic 0:05aad811ea07 35 int ethernet_write(const char *data, int size);
esokic 0:05aad811ea07 36
esokic 0:05aad811ea07 37 // send ethernet write buffer, returning the packet size sent
esokic 0:05aad811ea07 38 int ethernet_send(void);
esokic 0:05aad811ea07 39
esokic 0:05aad811ea07 40 // recieve from ethernet buffer, returning packet size, or 0 if no packet
esokic 0:05aad811ea07 41 int ethernet_receive(void);
esokic 0:05aad811ea07 42
esokic 0:05aad811ea07 43 // read size bytes in to data, return actual num bytes read (0..size)
esokic 0:05aad811ea07 44 // if data == NULL, throw the bytes away
esokic 0:05aad811ea07 45 int ethernet_read(char *data, int size);
esokic 0:05aad811ea07 46
esokic 0:05aad811ea07 47 // get the ethernet address
esokic 0:05aad811ea07 48 void ethernet_address(char *mac);
esokic 0:05aad811ea07 49
esokic 0:05aad811ea07 50 // see if the link is up
esokic 0:05aad811ea07 51 int ethernet_link(void);
esokic 0:05aad811ea07 52
esokic 0:05aad811ea07 53 // force link settings
esokic 0:05aad811ea07 54 void ethernet_set_link(int speed, int duplex);
esokic 0:05aad811ea07 55
esokic 0:05aad811ea07 56 #ifdef __cplusplus
esokic 0:05aad811ea07 57 }
esokic 0:05aad811ea07 58 #endif
esokic 0:05aad811ea07 59
esokic 0:05aad811ea07 60 #endif
esokic 0:05aad811ea07 61
esokic 0:05aad811ea07 62 #endif
esokic 0:05aad811ea07 63