mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-01-04 18:31:32 +00:00
bugfix: autofiltered data did not always trigger serial port event
This commit is contained in:
parent
75b624eb71
commit
53e150f240
@ -26,7 +26,7 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: SerialUI.java,v 1.5 2010/05/09 19:45:57 joxe Exp $
|
* $Id: SerialUI.java,v 1.6 2010/06/11 14:12:09 fros4943 Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package se.sics.cooja.dialogs;
|
package se.sics.cooja.dialogs;
|
||||||
@ -348,9 +348,9 @@ public abstract class SerialUI extends Log implements SerialPort {
|
|||||||
newMessage.setLength(0);
|
newMessage.setLength(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
lastSerialData = (byte) data;
|
|
||||||
serialDataObservable.notifyNewData();
|
|
||||||
}
|
}
|
||||||
|
lastSerialData = (byte) data;
|
||||||
|
serialDataObservable.notifyNewData();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void close() {
|
public void close() {
|
||||||
|
Loading…
Reference in New Issue
Block a user