(self, argument, mdio)
| 301 | self.reset_decoder_state() |
| 302 | |
| 303 | def process_state(self, argument, mdio): |
| 304 | method_name = 'state_' + str(argument) |
| 305 | method = getattr(self, method_name) |
| 306 | return method(mdio) |
| 307 | |
| 308 | # Returns the first quartile point of the frames cycle lengths. This is a |
| 309 | # conservative guess for the end of the last cycle. On average it will be |