Commit 90078a7a authored by YannGarcia's avatar YannGarcia
Browse files

Remove useless folder; Bug fixed in TITAN build from source

parent b2da7041
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -87,6 +87,9 @@ DEBUG:=no
GEN_PDF:=no
EOF

# To prevent link error /usr/bin/ld: /lib/x86_64-linux-gnu/libpthread.so.0: error adding symbols: DSO missing from command lineema  
sed --in-place 's/LINUX_LIBS     := -lxml2/LINUX_LIBS     := -lxml2 -lpthread/g' ./core/Makefile

echo "Starting build..."
make clean
if [ "${OSTYPE}" == "cygwin" ]

simu/_Getch.py

deleted100644 → 0
+0 −41
Original line number Diff line number Diff line


class _Getch:
    """Gets a single character from standard input.  Does not echo to the
screen."""
    def __init__(self):
        try:
            self.impl = _GetchWindows()
        except ImportError:
            self.impl = _GetchUnix()

    def __call__(self): return self.impl()

class _GetchUnix:
    def __init__(self):
        import tty, sys

    def __call__(self):
        import sys, tty, termios
        fd = sys.stdin.fileno()
        old_settings = termios.tcgetattr(fd)
        try:
            tty.setraw(sys.stdin.fileno())
            ch = sys.stdin.read(1)
        finally:
            termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
        return ch

class _GetchWindows:
    def __init__(self):
        import msvcrt

    def __call__(self):
        import msvcrt
        while msvcrt.kbhit():
            msvcrt.getch()
        ch = msvcrt.getch()
        while ch in b'\x00\xe0':
            msvcrt.getch()
            ch = msvcrt.getch()
        return ch.decode()

simu/data/access_point_list.csv

deleted100644 → 0
+0 −7
Original line number Diff line number Diff line
accessPointId,zoneId,connectionType,operationStatus,numberOfUsers,interestRealm,resourceURL
001010000000000000000000000000001,zone01,Macro,Serviceable,5,LA,http://example.com/exampleAPI/location/v1/zones/zone01/accessPoints/ap001
001010000000000000000000000000010,zone01,Macro,Unserviceable,0,DC,http://example.com/exampleAPI/location/v1/zones/zone01/accessPoints/ap002
001010000000000000000000000000011,zone01,Macro,Serviceable,5,NJ,http://example.com/exampleAPI/location/v1/zones/zone01/accessPoints/ap003
002010000000000000000000000000001,zone02,Macro,Serviceable,5,LA,http://example.com/exampleAPI/location/v1/zones/zone02/accessPoints/ap001
002010000000000000000000000000010,zone02,Macro,Unserviceable,0,DC,http://example.com/exampleAPI/location/v1/zones/zone02/accessPoints/ap002
002010000000000000000000000000011,zone02,Macro,Serviceable,5,NJ,http://example.com/exampleAPI/location/v1/zones/zone02/accessPoints/ap003

simu/data/associated.csv

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
cellId,appInst,type,address
134217738,appInst01,1,192.0.0.1
134217739,appInst02,1,192.0.0.2

simu/data/cells.csv

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
cellId,mcc,mnc,hoStatus,seconds,nanoseconds
134217738,1,1,COMPLETED,1577836800,0
134217739,1,1,COMPLETED,1577836800,0
Loading