Source code for place.plugins.sr850_amp.sr850_mark

"""Mark commands"""
from .sr850_driver import SR850Driver

[docs]class SR850Mark(SR850Driver): """Mark commands"""
[docs] def mark(self): """Place a mark in the data buffer at the next sample. This is the same as pressing the MARK key. This command has an effect only when a scan is in progress. """ self._set('MARK')
[docs] def cnxt(self): """docstring goes here""" pass
[docs] def cprv(self): """docstring goes here""" pass
[docs] def mdel(self): """docstring goes here""" pass
[docs] def mact(self): """docstring goes here""" pass
[docs] def mbin(self): """docstring goes here""" pass
[docs] def mtxt(self): """docstring goes here""" pass