diff options
Diffstat (limited to 'mpm/python/usrp_mpm/periph_manager/e320.py')
| -rw-r--r-- | mpm/python/usrp_mpm/periph_manager/e320.py | 70 | 
1 files changed, 0 insertions, 70 deletions
| diff --git a/mpm/python/usrp_mpm/periph_manager/e320.py b/mpm/python/usrp_mpm/periph_manager/e320.py index d48f90cbd..90cc1c049 100644 --- a/mpm/python/usrp_mpm/periph_manager/e320.py +++ b/mpm/python/usrp_mpm/periph_manager/e320.py @@ -410,39 +410,6 @@ class e320(ZynqComponents, PeriphManagerBase):          })          return device_info -    def set_device_id(self, device_id): -        """ -        Sets the device ID for this motherboard. -        The device ID is used to identify the RFNoC components associated with -        this motherboard. -        """ -        self.log.debug("Setting device ID to `{}'".format(device_id)) -        self.mboard_regs_control.set_device_id(device_id) - -    def get_device_id(self): -        """ -        Gets the device ID for this motherboard. -        The device ID is used to identify the RFNoC components associated with -        this motherboard. -        """ -        return self.mboard_regs_control.get_device_id() - -    def get_proto_ver(self): -        """ -        Return RFNoC protocol version -        """ -        proto_ver = self.mboard_regs_control.get_proto_ver() -        self.log.debug("RFNoC protocol version supported by this device is {}".format(proto_ver)) -        return proto_ver - -    def get_chdr_width(self): -        """ -        Return RFNoC CHDR width -        """ -        chdr_width = self.mboard_regs_control.get_chdr_width() -        self.log.debug("CHDR width supported by the device is {}".format(chdr_width)) -        return chdr_width -      ###########################################################################      # Clock/Time API      ########################################################################### @@ -753,43 +720,6 @@ class e320(ZynqComponents, PeriphManagerBase):      #######################################################################      # Timekeeper API      ####################################################################### -    def get_num_timekeepers(self): -        """ -        Return the number of timekeepers -        """ -        return self.mboard_regs_control.get_num_timekeepers() - -    def get_timekeeper_time(self, tk_idx, last_pps): -        """ -        Get the time in ticks - -        Arguments: -        tk_idx: Index of timekeeper -        next_pps: If True, get time at last PPS. Otherwise, get time now. -        """ -        return self.mboard_regs_control.get_timekeeper_time(tk_idx, last_pps) - -    def set_timekeeper_time(self, tk_idx, ticks, next_pps): -        """ -        Set the time in ticks - -        Arguments: -        tk_idx: Index of timekeeper -        ticks: Time in ticks -        next_pps: If True, set time at next PPS. Otherwise, set time now. -        """ -        self.mboard_regs_control.set_timekeeper_time(tk_idx, ticks, next_pps) - -    def set_tick_period(self, tk_idx, period_ns): -        """ -        Set the time per tick in nanoseconds (tick period) - -        Arguments: -        tk_idx: Index of timekeeper -        period_ns: Period in nanoseconds -        """ -        self.mboard_regs_control.set_tick_period(tk_idx, period_ns) -      def get_clocks(self):          """          Gets the RFNoC-related clocks present in the FPGA design | 
