Changeset e53794c in mainline
- Timestamp:
- 2016-12-10T12:49:09Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aed3e6a
- Parents:
- c4e30607
- Location:
- uspace/srv/hid/output
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/output/Makefile
rc4e30607 re53794c 30 30 USPACE_PREFIX = ../../.. 31 31 BINARY = output 32 LIBS = $(LIBDRV_PREFIX)/libdrv.a 33 EXTRA_CFLAGS = -I$(LIBDRV_PREFIX)/include 32 34 33 35 SOURCES = \ … … 37 39 port/niagara.c \ 38 40 port/ski.c \ 41 port/chardev.c \ 39 42 proto/vt100.c \ 40 43 output.c -
uspace/srv/hid/output/output.c
rc4e30607 re53794c 38 38 #include "port/niagara.h" 39 39 #include "port/ski.h" 40 #include "port/chardev.h" 40 41 #include "output.h" 41 42 … … 479 480 niagara_init(); 480 481 ski_init(); 482 chardev_init(); 481 483 482 484 printf("%s: Accepting connections\n", NAME);
Note:
See TracChangeset
for help on using the changeset viewer.