56 |
56 |
57 @return flag indicating an interrupt is needed |
57 @return flag indicating an interrupt is needed |
58 @rtype bool |
58 @rtype bool |
59 """ |
59 """ |
60 return False |
60 return False |
|
61 |
|
62 def deviceName(self): |
|
63 """ |
|
64 Public method to get the name of the device. |
|
65 |
|
66 @return name of the device |
|
67 @rtype str |
|
68 """ |
|
69 return self.tr("CircuitPython") |
61 |
70 |
62 def canStartRepl(self): |
71 def canStartRepl(self): |
63 """ |
72 """ |
64 Public method to determine, if a REPL can be started. |
73 Public method to determine, if a REPL can be started. |
65 |
74 |