├── README.md ├── Ultimate_Guide.pdf ├── doc ├── Abstract_LAP_Corentin_Ferry.pdf ├── Abstract_LAP_Juan_Azcarreta.pdf ├── Presentation_Juan_Azcarreta.pdf ├── Report_Corentin_Ferry.pdf ├── Report_Juan_Azcarreta.pdf ├── pyramic.png └── pyramic_layers.png ├── fpga ├── MIC_ARRAY │ ├── .gitignore │ ├── create_hw_headers.sh │ ├── create_linux_system.sh │ ├── hw │ │ ├── hdl │ │ │ ├── Beamformer_Adder.vhd │ │ │ ├── DE1_SoC_top_level.vhd │ │ │ ├── FIFO_Mic.vhd │ │ │ ├── FIFO_Streaming.vhd │ │ │ ├── LEDDriver.vhd │ │ │ ├── Output_Buffer_Driver.vhd │ │ │ ├── SPI_Controller.vhd │ │ │ ├── SPI_DMA.vhd │ │ │ ├── SPI_Slave.vhd │ │ │ ├── SPI_Streaming.vhd │ │ │ └── SPI_System.vhd │ │ ├── modelsim │ │ │ ├── SPI_system_tb.vhd │ │ │ ├── Test_full_system.mpf │ │ │ └── work │ │ │ │ └── _info │ │ └── quartus │ │ │ ├── .gitignore │ │ │ ├── Beamformer_hw.tcl │ │ │ ├── LEDDriver_hw.tcl │ │ │ ├── Output_Switcher_hw.tcl │ │ │ ├── Pyramic_Array.qpf │ │ │ ├── Pyramic_Array.qsf │ │ │ ├── Pyramic_Array.qsys │ │ │ ├── SPI_System_hw.tcl │ │ │ ├── coeff_filter │ │ │ └── pin_assignment_DE1_SoC.tcl │ └── sw │ │ └── hps │ │ ├── .gitignore │ │ ├── application │ │ ├── .gitignore │ │ ├── libpyramicio_test │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── pyramic_mic2wav │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── pyramicio │ │ │ ├── Doxyfile │ │ │ ├── Makefile │ │ │ ├── doc_main.md │ │ │ ├── html │ │ │ │ ├── annotated.html │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── classes.html │ │ │ │ ├── closed.png │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── dynsections.js │ │ │ │ ├── files.html │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── functions.html │ │ │ │ ├── functions_vars.html │ │ │ │ ├── globals.html │ │ │ │ ├── globals_func.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── open.png │ │ │ │ ├── pyramicio_8h.html │ │ │ │ ├── pyramicio_8h_source.html │ │ │ │ ├── search │ │ │ │ │ ├── all_0.html │ │ │ │ │ ├── all_0.js │ │ │ │ │ ├── all_1.html │ │ │ │ │ ├── all_1.js │ │ │ │ │ ├── all_2.html │ │ │ │ │ ├── all_2.js │ │ │ │ │ ├── all_3.html │ │ │ │ │ ├── all_3.js │ │ │ │ │ ├── all_4.html │ │ │ │ │ ├── all_4.js │ │ │ │ │ ├── all_5.html │ │ │ │ │ ├── all_5.js │ │ │ │ │ ├── all_6.html │ │ │ │ │ ├── all_6.js │ │ │ │ │ ├── classes_0.html │ │ │ │ │ ├── classes_0.js │ │ │ │ │ ├── classes_1.html │ │ │ │ │ ├── classes_1.js │ │ │ │ │ ├── classes_2.html │ │ │ │ │ ├── classes_2.js │ │ │ │ │ ├── close.png │ │ │ │ │ ├── files_0.html │ │ │ │ │ ├── files_0.js │ │ │ │ │ ├── functions_0.html │ │ │ │ │ ├── functions_0.js │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── nomatches.html │ │ │ │ │ ├── pages_0.html │ │ │ │ │ ├── pages_0.js │ │ │ │ │ ├── search.css │ │ │ │ │ ├── search.js │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ ├── searchdata.js │ │ │ │ │ ├── variables_0.html │ │ │ │ │ ├── variables_0.js │ │ │ │ │ ├── variables_1.html │ │ │ │ │ ├── variables_1.js │ │ │ │ │ ├── variables_2.html │ │ │ │ │ └── variables_2.js │ │ │ │ ├── splitbar.png │ │ │ │ ├── structinputBuffer-members.html │ │ │ │ ├── structinputBuffer.html │ │ │ │ ├── structoutputBuffer-members.html │ │ │ │ ├── structoutputBuffer.html │ │ │ │ ├── structpyramic-members.html │ │ │ │ ├── structpyramic.html │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ │ ├── latex │ │ │ │ ├── Makefile │ │ │ │ ├── annotated.tex │ │ │ │ ├── doxygen.sty │ │ │ │ ├── files.tex │ │ │ │ ├── index.tex │ │ │ │ ├── pyramicio_8h.tex │ │ │ │ ├── refman.aux │ │ │ │ ├── refman.idx │ │ │ │ ├── refman.ilg │ │ │ │ ├── refman.ind │ │ │ │ ├── refman.log │ │ │ │ ├── refman.out │ │ │ │ ├── refman.pdf │ │ │ │ ├── refman.tex │ │ │ │ ├── refman.toc │ │ │ │ ├── structinputBuffer.tex │ │ │ │ ├── structoutputBuffer.tex │ │ │ │ └── structpyramic.tex │ │ │ ├── pyramicio.c │ │ │ └── pyramicio.h │ │ └── wav_tools │ │ │ ├── Makefile │ │ │ ├── make_wav.c │ │ │ ├── make_wav.h │ │ │ ├── read_wav.c │ │ │ └── read_wav.h │ │ └── linux │ │ ├── .gitignore │ │ └── rootfs │ │ ├── .gitignore │ │ ├── config_post_install.sh │ │ └── config_system.sh ├── README.md └── README.txt └── pcb ├── Altium_Library └── HEPIA_LSN_RB_V1.SchLib ├── MicArray Project_v3 ├── MicArray.OutJob ├── MicArrayPCBBoard_V3.PcbDoc ├── MicArrayPCB_V3.PrjPcb ├── MicArrayPCB_V3.PrjPcbStructure ├── MicArraySchem_V3.SchDoc └── Project Outputs for MicArrayPCB_V3 │ └── Design Rule Check - MicArrayPCBBoard_V3.html └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/README.md -------------------------------------------------------------------------------- /Ultimate_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/Ultimate_Guide.pdf -------------------------------------------------------------------------------- /doc/Abstract_LAP_Corentin_Ferry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/doc/Abstract_LAP_Corentin_Ferry.pdf -------------------------------------------------------------------------------- /doc/Abstract_LAP_Juan_Azcarreta.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/doc/Abstract_LAP_Juan_Azcarreta.pdf -------------------------------------------------------------------------------- /doc/Presentation_Juan_Azcarreta.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/doc/Presentation_Juan_Azcarreta.pdf -------------------------------------------------------------------------------- /doc/Report_Corentin_Ferry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/doc/Report_Corentin_Ferry.pdf -------------------------------------------------------------------------------- /doc/Report_Juan_Azcarreta.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/doc/Report_Juan_Azcarreta.pdf -------------------------------------------------------------------------------- /doc/pyramic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/doc/pyramic.png -------------------------------------------------------------------------------- /doc/pyramic_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/doc/pyramic_layers.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/.gitignore: -------------------------------------------------------------------------------- 1 | sdcard/ 2 | -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/create_hw_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/create_hw_headers.sh -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/create_linux_system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/create_linux_system.sh -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/hdl/Beamformer_Adder.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/hdl/Beamformer_Adder.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/hdl/DE1_SoC_top_level.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/hdl/DE1_SoC_top_level.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/hdl/FIFO_Mic.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/hdl/FIFO_Mic.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/hdl/FIFO_Streaming.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/hdl/FIFO_Streaming.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/hdl/LEDDriver.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/hdl/LEDDriver.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/hdl/Output_Buffer_Driver.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/hdl/Output_Buffer_Driver.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/hdl/SPI_Controller.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/hdl/SPI_Controller.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/hdl/SPI_DMA.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/hdl/SPI_DMA.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/hdl/SPI_Slave.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/hdl/SPI_Slave.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/hdl/SPI_Streaming.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/hdl/SPI_Streaming.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/hdl/SPI_System.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/hdl/SPI_System.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/modelsim/SPI_system_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/modelsim/SPI_system_tb.vhd -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/modelsim/Test_full_system.mpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/modelsim/Test_full_system.mpf -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/modelsim/work/_info: -------------------------------------------------------------------------------- 1 | m255 2 | K3 3 | z0 4 | 13 5 | cModel Technology 6 | -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/quartus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/quartus/.gitignore -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/quartus/Beamformer_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/quartus/Beamformer_hw.tcl -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/quartus/LEDDriver_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/quartus/LEDDriver_hw.tcl -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/quartus/Output_Switcher_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/quartus/Output_Switcher_hw.tcl -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/quartus/Pyramic_Array.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/quartus/Pyramic_Array.qpf -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/quartus/Pyramic_Array.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/quartus/Pyramic_Array.qsf -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/quartus/Pyramic_Array.qsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/quartus/Pyramic_Array.qsys -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/quartus/SPI_System_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/quartus/SPI_System_hw.tcl -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/quartus/coeff_filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/quartus/coeff_filter -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/hw/quartus/pin_assignment_DE1_SoC.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/hw/quartus/pin_assignment_DE1_SoC.tcl -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/.gitignore: -------------------------------------------------------------------------------- 1 | preloader/ 2 | u-boot/ 3 | -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/.gitignore: -------------------------------------------------------------------------------- 1 | hw_headers/ 2 | -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/libpyramicio_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/libpyramicio_test/Makefile -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/libpyramicio_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/libpyramicio_test/main.c -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramic_mic2wav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramic_mic2wav/Makefile -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramic_mic2wav/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramic_mic2wav/main.c -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/Doxyfile -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/Makefile -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/doc_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/doc_main.md -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/annotated.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/bc_s.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/bdwn.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/classes.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/closed.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/doc.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/doxygen.css -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/doxygen.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/dynsections.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/files.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/folderclosed.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/folderopen.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/functions.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/functions_vars.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/globals.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/globals_func.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/index.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/jquery.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/menu.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/menudata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/menudata.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/nav_f.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/nav_g.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/nav_h.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/open.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/pyramicio_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/pyramicio_8h.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/pyramicio_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/pyramicio_8h_source.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_0.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_0.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_1.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_1.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_2.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_2.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_3.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_3.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_4.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_4.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_5.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_5.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_6.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/all_6.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_0.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_0.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_1.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_1.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_2.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/classes_2.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/close.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/files_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/files_0.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/files_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/files_0.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/functions_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/functions_0.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/functions_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/functions_0.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/mag_sel.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/nomatches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/nomatches.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/pages_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/pages_0.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/pages_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/pages_0.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/search.css -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/search.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/search_l.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/search_m.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/search_r.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/searchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/searchdata.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_0.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_0.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_1.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_1.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_2.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/search/variables_2.js -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/splitbar.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structinputBuffer-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structinputBuffer-members.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structinputBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structinputBuffer.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structoutputBuffer-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structoutputBuffer-members.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structoutputBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structoutputBuffer.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structpyramic-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structpyramic-members.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structpyramic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/structpyramic.html -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/sync_off.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/sync_on.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/tab_a.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/tab_b.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/tab_h.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/tab_s.png -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/html/tabs.css -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/Makefile -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/annotated.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/annotated.tex -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/doxygen.sty -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/files.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/files.tex -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/index.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/index.tex -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/pyramicio_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/pyramicio_8h.tex -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.aux -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.idx -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.ilg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.ilg -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.ind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.ind -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.log -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.out -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.pdf -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.tex -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/refman.toc -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/structinputBuffer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/structinputBuffer.tex -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/structoutputBuffer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/structoutputBuffer.tex -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/structpyramic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/latex/structpyramic.tex -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/pyramicio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/pyramicio.c -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/pyramicio/pyramicio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/pyramicio/pyramicio.h -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/wav_tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/wav_tools/Makefile -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/wav_tools/make_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/wav_tools/make_wav.c -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/wav_tools/make_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/wav_tools/make_wav.h -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/wav_tools/read_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/wav_tools/read_wav.c -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/application/wav_tools/read_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/application/wav_tools/read_wav.h -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/linux/.gitignore: -------------------------------------------------------------------------------- 1 | source/ 2 | -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/linux/rootfs/.gitignore: -------------------------------------------------------------------------------- 1 | ubuntu-* 2 | -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/linux/rootfs/config_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/linux/rootfs/config_post_install.sh -------------------------------------------------------------------------------- /fpga/MIC_ARRAY/sw/hps/linux/rootfs/config_system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/MIC_ARRAY/sw/hps/linux/rootfs/config_system.sh -------------------------------------------------------------------------------- /fpga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/README.md -------------------------------------------------------------------------------- /fpga/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/fpga/README.txt -------------------------------------------------------------------------------- /pcb/Altium_Library/HEPIA_LSN_RB_V1.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/pcb/Altium_Library/HEPIA_LSN_RB_V1.SchLib -------------------------------------------------------------------------------- /pcb/MicArray Project_v3/MicArray.OutJob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/pcb/MicArray Project_v3/MicArray.OutJob -------------------------------------------------------------------------------- /pcb/MicArray Project_v3/MicArrayPCBBoard_V3.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/pcb/MicArray Project_v3/MicArrayPCBBoard_V3.PcbDoc -------------------------------------------------------------------------------- /pcb/MicArray Project_v3/MicArrayPCB_V3.PrjPcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/pcb/MicArray Project_v3/MicArrayPCB_V3.PrjPcb -------------------------------------------------------------------------------- /pcb/MicArray Project_v3/MicArrayPCB_V3.PrjPcbStructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/pcb/MicArray Project_v3/MicArrayPCB_V3.PrjPcbStructure -------------------------------------------------------------------------------- /pcb/MicArray Project_v3/MicArraySchem_V3.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/pcb/MicArray Project_v3/MicArraySchem_V3.SchDoc -------------------------------------------------------------------------------- /pcb/MicArray Project_v3/Project Outputs for MicArrayPCB_V3/Design Rule Check - MicArrayPCBBoard_V3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/pcb/MicArray Project_v3/Project Outputs for MicArrayPCB_V3/Design Rule Check - MicArrayPCBBoard_V3.html -------------------------------------------------------------------------------- /pcb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCAV/Pyramic/HEAD/pcb/README.md --------------------------------------------------------------------------------