Forum Discussion
Of course it is !
Intel Monitor Program (or in the past Altera Monitor Program) is a University tool to manage DEx-SoC Boards.
looking inside the "amp.mk" related to a project composed by three file:
- sample_program_ARM.c
- ADXL345.c
- ADXL345.h
This is how it appears:
..... missing ....
# Files
HDRS :=
SRCS := Accelerometer_Design_Files/design_files/sample_program_ARM.c Accelerometer_Design_Files/design_files/ADXL345.c Accelerometer_Design_Files/design_files/ADXL345.h
OBJS := $(patsubst %, %.o, $(SRCS))
and this is how it SHOULD be
..... missing ....
# Files
HDRS := Accelerometer_Design_Files/design_files/ADXL345.h
SRCS := Accelerometer_Design_Files/design_files/sample_program_ARM.c Accelerometer_Design_Files/design_files/ADXL345.c
OBJS := $(patsubst %, %.o, $(SRCS))
But inside Monitor Program I found no option to manage it.
The only way is to modify manually the file even if it is clearly written:
# Created by the Intel FPGA Monitor Program
# DO NOT MODIFY