Changeset 81329f9 in rtems
- Timestamp:
- 07/15/14 14:20:37 (9 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 8ae37323
- Parents:
- 3f9cd87d
- git-author:
- Christian Mauderer <Christian.Mauderer@…> (07/15/14 14:20:37)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (08/11/14 06:01:26)
- Location:
- c/src/lib/libbsp/arm/altera-cyclone-v
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/arm/altera-cyclone-v/Makefile.am
r3f9cd87d r81329f9 201 201 include_bsp_HEADERS += include/i2cdrv.h 202 202 203 # RTC 204 libbsp_a_SOURCES += ../../shared/tod.c 205 libbsp_a_SOURCES += rtc/rtc.c 206 203 207 # Cache 204 208 libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c -
c/src/lib/libbsp/arm/altera-cyclone-v/README
r3f9cd87d r81329f9 1 Overview 2 -------- 1 3 Evaluation board for this BSP: 2 4 - Cyclone V SoC FPGA Development Kit 3 5 - DK-DEV-5CSXC6N/ES-0L 6 7 RTC 8 --- 9 The evaluation board contains a DS1339C RTC connected to I2C0. To use it you 10 have to set the following options: 11 12 #define CONFIGURE_APPLICATION_NEEDS_RTC_DRIVER 13 #define CONFIGURE_BSP_PREREQUISITE_DRIVERS I2C_DRIVER_TABLE_ENTRY 14 15 Additional there has to be one free file descriptor to access the i2c. Set the 16 CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS accordingly. -
c/src/lib/libbsp/arm/altera-cyclone-v/preinstall.am
r3f9cd87d r81329f9 6 6 endif 7 7 8 PREINSTALL_DIRS = 9 DISTCLEANFILES += $(PREINSTALL_DIRS) 10 8 11 all-am: $(PREINSTALL_FILES) 9 12 10 13 PREINSTALL_FILES = 11 14 CLEANFILES = $(PREINSTALL_FILES) 12 13 PREINSTALL_DIRS =14 DISTCLEANFILES += $(PREINSTALL_DIRS)15 15 16 16 all-local: $(TMPINSTALL_FILES)
Note: See TracChangeset
for help on using the changeset viewer.