Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Traindata #15

Merged
merged 2 commits into from
Aug 21, 2023
Merged

Update Traindata #15

merged 2 commits into from
Aug 21, 2023

Conversation

albertosaurio65
Copy link
Collaborator

1305 -> Talgo 300RD Prototipo 130.5 ( Velocidad y curvas de frenado mayores al Talgo 250 ) 1302 -> Talgo 250 Afrosiyob ( Longitud menor al Talgo 250 estándar 130 )

1305 -> Talgo 300RD Prototipo 130.5 ( Velocidad y curvas de frenado mayores al Talgo 250 )
1302 -> Talgo 250 Afrosiyob ( Longitud menor al Talgo 250 estándar 130 )
@cesarBLG cesarBLG merged commit 82ca5b7 into master Aug 21, 2023
5 checks passed
albertosaurio65 added a commit that referenced this pull request Sep 7, 2023
commit cf3ed51
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Thu Sep 7 12:40:07 2023 +0200

    Fix android app

commit d2e84c4
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Mon Sep 4 22:02:46 2023 +0200

    Fix STM menu

commit 0a57be7
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Mon Sep 4 18:00:21 2023 +0200

    Trying to fix ASFA handling

commit f2355f4
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Sat Sep 2 11:42:06 2023 +0200

    Session fixes

commit f37f137
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Fri Sep 1 17:15:35 2023 +0200

    Revert "Fix cold data bug"

    This reverts commit ff00fd9.

commit ff00fd9
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Fri Sep 1 17:01:59 2023 +0200

    Fix cold data bug

commit a4fbd46
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Fri Sep 1 12:09:48 2023 +0200

    Temporary ORTS bridge

commit 8cbc3e1
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Thu Aug 31 22:26:51 2023 +0200

    Fix nav button size for soft keys

commit 95e134b
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Thu Aug 31 15:57:12 2023 +0200

    Some checks to prevent errors caused by faulty DMI

commit 05edd22
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Thu Aug 31 15:36:38 2023 +0200

    Socket graceful close

commit fe5cf46
Merge: 5094fbf f96423b
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Wed Aug 30 10:31:21 2023 +0200

    Merge branch 'master' of github.com:Bartlomiej-Skwara/ETCS

commit 5094fbf
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Wed Aug 30 10:30:53 2023 +0200

    Proper ETCS id assignment

commit f96423b
Author: milek7 <me@milek7.pl>
Date:   Wed Aug 30 04:51:47 2023 +0200

    Replace previous persistent command value

commit b0486a9
Author: milek7 <me@milek7.pl>
Date:   Wed Aug 30 04:51:06 2023 +0200

    Rebuild windows when switching config

commit 39f9299
Author: milek7 <me@milek7.pl>
Date:   Wed Aug 30 00:57:39 2023 +0200

    Reliable LeaveNotification in TcpBusSocket

commit 8295550
Author: milek7 <me@milek7.pl>
Date:   Wed Aug 30 00:39:58 2023 +0200

    Remove unnecessary include from console_platform.h

commit 7ab821d
Author: milek7 <me@milek7.pl>
Date:   Wed Aug 30 00:20:38 2023 +0200

    Do not meddle with internals of TcpSocket

    From perspective of API design, is_failed() isn't very useful:
    it does not allow for async notification, and consumer can anyway
    keep track of disconnection which is signalled by 0-length message.
    Likewise for is_connected(), which does not provide async notification
    and isn't vitally important (because of internal buffering data can
    be submitted even before socket becomes writable). It would be more useful
    to either have on_connected() or in-band signalling in receive().
    Probing internals of tx_pending also doesn't really improve anything,
    having proper shutdown() would be much better.
    Ability to connect() existing socket is flaky, because it is getaddrinfo
    that provides necessary flags. Caller would need to get necessary info from
    getaddrinfo itself, and by this point it could as well connect and supply
    connected fd to constructor.

commit 2ebcf27
Author: milek7 <me@milek7.pl>
Date:   Tue Aug 29 23:36:30 2023 +0200

    Mark connection as failed when bound RBC peer leaves

commit ab18315
Author: milek7 <me@milek7.pl>
Date:   Tue Aug 29 23:07:20 2023 +0200

    Simplify dmi_update_func logic

    There's no point for reconnection on failure because bus sockets are
    self-managing and statically configured in principle.

commit 0e0b3de
Author: milek7 <me@milek7.pl>
Date:   Tue Aug 29 21:08:03 2023 +0200

    Verify peer ID when setting active flag

    Only affect active flag when receiving message from EVC, to prevent
    incorrect setting when other peers are connected/disconnected.

commit 65d4cf3
Author: milek7 <me@milek7.pl>
Date:   Tue Aug 29 20:23:40 2023 +0200

    Do not spam window::event() when there's no active touch

commit 421f0d9
Author: milek7 <me@milek7.pl>
Date:   Tue Aug 29 20:17:56 2023 +0200

    Move softkey flag into json

    This is not setting that controls platform backend behaviour,
    so it shouldn't be in its config.

commit 22dc58e
Author: milek7 <me@milek7.pl>
Date:   Tue Aug 29 19:38:50 2023 +0200

    Revert cc3639f.

    Connecting bus socket into single TCP peer breaks expectations about bus socket behavior.
    (that it is multiple-client, automatically reconnecting transport).
    Instead of trying to fix breakage down the line, maybe BusTcpBridge counterpart should be created
    that handles reconnections there.

commit 15339b2
Author: milek7 <me@milek7.pl>
Date:   Tue Aug 29 19:22:41 2023 +0200

    Remove junk files containing paths to files outside repository

commit e46ec79
Author: milek7 <me@milek7.pl>
Date:   Tue Aug 29 19:03:23 2023 +0200

    Remove android/log.h include from evc.cpp

    It shouldn't be needed here because logging is handled by platform code.

commit 7e85fdd
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Tue Aug 29 16:34:34 2023 +0200

    Fix mode filter

commit 2407516
Merge: 4f9a51f 315bae5
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Tue Aug 29 16:13:07 2023 +0200

    Merge branch 'master' of github.com:Bartlomiej-Skwara/ETCS

commit 315bae5
Author: firleju <grzegorz.firlejczyk@gmail.com>
Date:   Tue Aug 29 13:06:27 2023 +0200

    One more change to RBC connection bus

commit a6e96c6
Author: firleju <grzegorz.firlejczyk@gmail.com>
Date:   Tue Aug 29 13:00:06 2023 +0200

    Restore old behaviour for bus connection for RBC

commit 4f9a51f
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Tue Aug 29 09:46:21 2023 +0200

    Communication session fixes

commit 0978327
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Mon Aug 28 09:41:35 2023 +0200

    Fix not filling L_PACKET

commit 71c2bff
Merge: 0dc7f7d 82ca5b7
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Fri Aug 25 17:53:44 2023 +0200

    Merge branch 'master' of github.com:cesarBLG/ETCS

commit 0dc7f7d
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Fri Aug 25 17:53:25 2023 +0200

    Radio fixes

commit e5d5644
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Mon Aug 21 19:26:23 2023 +0200

    Update liborts IP discovery

commit c73975a
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Mon Aug 21 12:33:51 2023 +0200

    Fix cold movement file creation

commit 82ca5b7
Merge: e104637 d8b3a5b
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Mon Aug 21 12:07:44 2023 +0200

    Merge pull request #15 from cesarBLG/Alberto

    Update Traindata

commit e104637
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Sun Aug 20 10:08:35 2023 +0200

    Further build fixes

commit ffd0d64
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Sun Aug 20 09:20:30 2023 +0200

    Build fixes

commit 9c23561
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Sun Aug 20 09:01:06 2023 +0200

    Add C-ares to final build folder

commit 37da57a
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Sat Aug 19 14:19:51 2023 +0200

    PS Safe radio protocol
cesarBLG pushed a commit that referenced this pull request Dec 3, 2023
Do not reset SR speed when distance is updated by trackside
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants