diff --git a/doc/doxygen/html/8259_8h.html b/doc/doxygen/html/8259_8h.html new file mode 100644 index 0000000..7bf76e3 --- /dev/null +++ b/doc/doxygen/html/8259_8h.html @@ -0,0 +1,378 @@ + +
+#include <ubixos/types.h>+Go to the source code of this file.
Defines | |
| #define | mPic 0x20 |
| #define | mImr 0x21 |
| #define | sPic 0xA0 |
| #define | sImr 0xA1 |
| #define | eoi 0x20 |
| #define | icw1 0x11 |
| #define | icw4 0x01 |
| #define | mVec 0x68 |
| #define | sVec 0x70 |
| #define | ocw3Irr 0x0A |
| #define | ocw3Isr 0x0B |
Functions | |
| int | init8259 () |
| void | irqEnable (uInt16 irqNo) |
| void | irqDisable (uInt16 irqNo) |
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+1.3.3
+
+
diff --git a/doc/doxygen/html/__types_8h.html b/doc/doxygen/html/__types_8h.html
new file mode 100644
index 0000000..3668178
--- /dev/null
+++ b/doc/doxygen/html/__types_8h.html
@@ -0,0 +1,68 @@
+
+
+#include <ubixos/types.h>+Go to the source code of this file.
Typedefs | |
| typedef unsigned long | __clock_t |
| typedef long | __time_t |
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+1.3.3
+
+
diff --git a/doc/doxygen/html/annotated.html b/doc/doxygen/html/annotated.html
new file mode 100644
index 0000000..53e0fae
--- /dev/null
+++ b/doc/doxygen/html/annotated.html
@@ -0,0 +1,107 @@
+
+
+
+1.3.3
+
+
diff --git a/doc/doxygen/html/api_8h.html b/doc/doxygen/html/api_8h.html
new file mode 100644
index 0000000..3c1f0cf
--- /dev/null
+++ b/doc/doxygen/html/api_8h.html
@@ -0,0 +1,1214 @@
+
+
+#include "net/opt.h"#include "net/pbuf.h"#include "net/sys.h"#include "net/ipv4/ip.h"#include "net/udp.h"#include "net/tcp.h"#include "net/err.h"+Go to the source code of this file.
Data Structures | |
| struct | netbuf |
| struct | netconn |
Defines | |
| #define | NETCONN_NOCOPY 0x00 |
| #define | NETCONN_COPY 0x01 |
Enumerations | |
| enum | netconn_type { NETCONN_TCP, +NETCONN_UDP, +NETCONN_UDPLITE, +NETCONN_UDPNOCHKSUM + } |
| enum | netconn_state { + NETCONN_NONE, +NETCONN_WRITE, +NETCONN_ACCEPT, +NETCONN_RECV, + + NETCONN_CONNECT, +NETCONN_CLOSE + + } |
Functions | |
| netbuf * | netbuf_new (void) |
| void | netbuf_delete (struct netbuf *buf) |
| void * | netbuf_alloc (struct netbuf *buf, uInt16 size) |
| void | netbuf_free (struct netbuf *buf) |
| void | netbuf_ref (struct netbuf *buf, void *dataptr, uInt16 size) |
| void | netbuf_chain (struct netbuf *head, struct netbuf *tail) |
| uInt16 | netbuf_len (struct netbuf *buf) |
| err_t | netbuf_data (struct netbuf *buf, void **dataptr, uInt16 *len) |
| Int8 | netbuf_next (struct netbuf *buf) |
| void | netbuf_first (struct netbuf *buf) |
| void | netbuf_copy (struct netbuf *buf, void *dataptr, uInt16 len) |
| ip_addr * | netbuf_fromaddr (struct netbuf *buf) |
| uInt16 | netbuf_fromport (struct netbuf *buf) |
| netconn * | netconn_new (enum netconn_type type) |
| err_t | netconn_delete (struct netconn *conn) |
| enum netconn_type | netconn_type (struct netconn *conn) |
| err_t | netconn_peer (struct netconn *conn, struct ip_addr **addr, uInt16 *port) |
| err_t | netconn_addr (struct netconn *conn, struct ip_addr **addr, uInt16 *port) |
| err_t | netconn_bind (struct netconn *conn, struct ip_addr *addr, uInt16 port) |
| err_t | netconn_connect (struct netconn *conn, struct ip_addr *addr, uInt16 port) |
| err_t | netconn_listen (struct netconn *conn) |
| netconn * | netconn_accept (struct netconn *conn) |
| netbuf * | netconn_recv (struct netconn *conn) |
| err_t | netconn_send (struct netconn *conn, struct netbuf *buf) |
| err_t | netconn_write (struct netconn *conn, void *dataptr, uInt16 size, uInt8 copy) |
| err_t | netconn_close (struct netconn *conn) |
| err_t | netconn_err (struct netconn *conn) |
| void | netbuf_copy_partial (struct netbuf *buf, void *dataptr, uInt16 len, uInt16 offset) |
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + + |
+
+
+
|
+
| + + | +
+
+ + + |
+
+
+
|
+ ||||||||||||
| + + | +
+
+ + |
+
+
+
|
+ ||||||||||||
| + + | +
+
+ + |
+
+
+
|
+ ||||||||||||||||
| + + | +
+
+ + |
+
+
+
|
+ ||||||||||||||||||||
| + + | +
+
+ + |
+
+
+
|
+ ||||||||||||||||
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+ ||||||||||||||||
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+ ||||||||||||||||
| + + | +
+
+ + |
+
+
+
|
+ ||||||||||||||||
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+ ||||||||||||||||
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+ ||||||||||||||||
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+ ||||||||||||
| + + | +
+
+ + |
+
+
+
|
+
| + + | +
+
+ + |
+
+
+
|
+ ||||||||||||||||||||
| + + | +
+
+ + |
+
+1.3.3
+
+