From 8b21572331c02fba3365440bb07f2943326d67c4 Mon Sep 17 00:00:00 2001 From: Marc Majoral Date: Thu, 6 May 2021 20:48:41 +0200 Subject: [PATCH] code cleaning --- src/algorithms/acquisition/libs/fpga_acquisition.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/acquisition/libs/fpga_acquisition.h b/src/algorithms/acquisition/libs/fpga_acquisition.h index 3b6aa792c..d9d2b31ba 100644 --- a/src/algorithms/acquisition/libs/fpga_acquisition.h +++ b/src/algorithms/acquisition/libs/fpga_acquisition.h @@ -143,9 +143,9 @@ public: private: // FPGA register parameters static const uint32_t PAGE_SIZE_DEFAULT = 0x10000; // default page size for the multicorrelator memory map + static const uint32_t LAUNCH_ACQUISITION = 1; // command to launch the acquisition process static const uint32_t RESET_ACQUISITION = 2; // command to reset the acquisition and the FPGA Modules static const uint32_t STOP_ACQUISITION = 4; // command to stop the acquisition and the FPGA modules - static const uint32_t LAUNCH_ACQUISITION = 1; // command to launch the acquisition process static const uint32_t TEST_REG_SANITY_CHECK = 0x55AA; // value to check the presence of the test register (to detect the hw) static const uint32_t LOCAL_CODE_CLEAR_MEM = 0x10000000; // command to clear the internal memory of the multicorrelator static const uint32_t MEM_LOCAL_CODE_WR_ENABLE = 0x0C000000; // command to enable the ENA and WR pins of the internal memory of the multicorrelator