/FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_Echo_Posix/ |
A D | Makefile | 32 SOURCE_FILES += ${FREERTOS_DIR}/Source/event_groups.c 33 SOURCE_FILES += ${FREERTOS_DIR}/Source/list.c 34 SOURCE_FILES += ${FREERTOS_DIR}/Source/queue.c 36 SOURCE_FILES += ${FREERTOS_DIR}/Source/tasks.c 37 SOURCE_FILES += ${FREERTOS_DIR}/Source/timers.c 44 SOURCE_FILES += SimpleTCPEchoServer.c 45 SOURCE_FILES += TCPEchoClient_SingleTasks.c 46 SOURCE_FILES += console.c 47 SOURCE_FILES += main.c 48 SOURCE_FILES += main_networking.c [all …]
|
/FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_Echo_Qemu_mps2/ |
A D | Makefile | 19 SOURCE_FILES += startup.c 20 SOURCE_FILES += syscalls.c 21 SOURCE_FILES += main.c 22 SOURCE_FILES += main_networking.c 23 SOURCE_FILES += TCPEchoClient_SingleTasks.c 30 SOURCE_FILES += $(KERNEL_DIR)/tasks.c 31 SOURCE_FILES += $(KERNEL_DIR)/list.c 32 SOURCE_FILES += $(KERNEL_DIR)/queue.c 33 SOURCE_FILES += $(KERNEL_DIR)/event_groups.c 89 %.d: %.c [all …]
|
A D | syscalls.c | 81 _uart_putc(char c, FILE *file) in _uart_putc() argument 85 UART_DR( UART0_ADDR ) = c; in _uart_putc() 86 return (unsigned char) c; in _uart_putc()
|
A D | Readme_TapNetworking.md | 100 inet6 fe80::89c:55ff:fe3d:18ad prefixlen 64 scopeid 0x20<link> 101 ether 0a:9c:55:3d:18:ad txqueuelen 1000 (Ethernet) 248 ```c 260 ```c 272 ```c 284 ```c 296 ```c 310 ```c 321 ```c 373 (gdb) c
|
A D | Readme_UserNetworking.md | 97 ```c 145 (gdb) c
|
/FreeRTOS-Plus/Source/Reliance-Edge/tests/util/ |
A D | atoi.c | 34 #define ISHEXDIGITU( c ) ( ( ( c ) >= 'A' ) && ( ( c ) <= 'F' ) ) argument 35 #define ISHEXDIGITL( c ) ( ( ( c ) >= 'a' ) && ( ( c ) <= 'f' ) ) argument 36 #define ISHEXDIGIT( c ) ( ISHEXDIGITL( c ) || ISHEXDIGITU( c ) ) argument
|
/FreeRTOS-Plus/Source/Reliance-Edge/include/ |
A D | redtestutils.h | 34 #define ISDIGIT( c ) ( ( ( c ) >= '0' ) && ( ( c ) <= '9' ) ) argument 85 char RedToLower( char c );
|
/FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_IPv6_Demo/IPv6_Multi_WinSim_demo/ |
A D | ReadMe.md | 45 1. Set `mainCREATE_TCP_ECHO_TASKS_SINGLE` to 1 in the [main.c](main.c) file. 76 1. Set `mainCREATE_TCP_ECHO_SERVER_TASK` to 1 in the [main.c](main.c) file. 100 1. Set `mainCREATE_UDP_ECHO_TASKS_SINGLE` to 1 in the [main.c](main.c) file. 135 1. Set `mainCREATE_CLI_TASK` to 1 in the [main.c](main.c) file. 137 `pcCommandList` array in the [main.c](main.c) file. By default, 200 [UDPEchoClient_SingleTasks.c](UDPEchoClient_SingleTasks.c) file.
|
A D | printf-stdarg.c | 137 int c ) in strbuf_printchar() 141 vOutputChar( ( char ) c, xTicksToWait ); in strbuf_printchar() 148 *( apStr->str++ ) = c; in strbuf_printchar() 163 int c ) in strbuf_printchar_inline() 167 vOutputChar( ( char ) c, xTicksToWait ); in strbuf_printchar_inline() 169 if( c == 0 ) in strbuf_printchar_inline() 180 *( apStr->str++ ) = c; in strbuf_printchar_inline() 182 if( c == 0 ) in strbuf_printchar_inline()
|
/FreeRTOS-Plus/Demo/AWS/Device_Shadow_Windows_Simulator/Common/ |
A D | printf-stdarg.c | 77 int c ) in strbuf_printchar() 81 vOutputChar( ( char ) c, xTicksToWait ); in strbuf_printchar() 88 *( apStr->str++ ) = c; in strbuf_printchar() 103 int c ) in strbuf_printchar_inline() 107 vOutputChar( ( char ) c, xTicksToWait ); in strbuf_printchar_inline() 109 if( c == 0 ) in strbuf_printchar_inline() 120 *( apStr->str++ ) = c; in strbuf_printchar_inline() 122 if( c == 0 ) in strbuf_printchar_inline()
|
/FreeRTOS-Plus/Source/Reliance-Edge/toolcmn/ |
A D | getopt.c | 133 int c; in gcd() local 135 c = a % b; in gcd() 137 while( c != 0 ) in gcd() 140 b = c; in gcd() 141 c = a % b; in gcd()
|
/FreeRTOS-Plus/Source/Application-Protocols/network_transport/ |
A D | readme.txt | 4 2. Build the wrapper file located in the directory (i.e. sockets_wrapper.c).
|
/FreeRTOS-Plus/Demo/coreMQTT_Windows_Simulator/MQTT_Plain_Text/ |
A D | mqtt_broker_setup.txt | 15 c. Verify that there is an output as shown below 17 d. If there is no output on step c, go through the Mosquitto documentation
|
/FreeRTOS-Plus/Demo/coreMQTT_Windows_Simulator/MQTT_Serializer/ |
A D | mqtt_broker_setup.txt | 15 c. Verify that there is an output as shown below 17 d. If there is no output on step c, go through the Mosquitto documentation
|
/FreeRTOS-Plus/Demo/coreMQTT_Windows_Simulator/MQTT_Keep_Alive/ |
A D | mqtt_broker_setup.txt | 15 c. Verify that there is an output as shown below 17 d. If there is no output on step c, go through the Mosquitto documentation
|
/FreeRTOS-Plus/Source/Reliance-Edge/tests/posix/ |
A D | redposixcompat.h | 145 #define memset( d, c, l ) RedMemSet( d, ( uint8_t ) ( c ), ( uint32_t ) ( l ) ) argument
|
A D | fsstress.c | 676 int c; in FsstressParseParams() local 711 switch( c ) in FsstressParseParams() 1264 int c; in get_fname() local 1271 for( i = 0, c = 0, flp = flist; i < FT_nft; i++, flp++ ) in get_fname() 1275 c += flp->nfiles; in get_fname() 1279 if( c == 0 ) in get_fname() 1295 x = ( int ) ( r % c ); in get_fname() 1297 for( i = 0, c = 0, flp = flist; i < FT_nft; i++, flp++ ) in get_fname() 1301 if( x < c + flp->nfiles ) in get_fname() 1303 fep = &flp->fents[ x - c ]; in get_fname() [all …]
|
/FreeRTOS-Plus/ThirdParty/winpcap/ |
A D | LICENSE.md | 1 Copyright (c) 1999 - 2005 NetGroup, Politecnico di Torino (Italy). 2 Copyright (c) 2005 - 2010 CACE Technologies, Davis (California). 17 Portions Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 The Regents of the University… 25 Portions Copyright (c) 1983 Regents of the University of California. All rights reserved. 28 Portions Copyright (c) 1995, 1996, 1997 Kungliga Tekniska Högskolan (Royal Institute of Technology,… 36 Portions Copyright (c) 1997 Yen Yen Lim and North Dakota State University. All rights reserved. 44 Portions Copyright (c) 1993 by Digital Equipment Corporation. 58 Portions Copyright (c) 1996 Juniper Networks, Inc. All rights reserved. 62 Portions Copyright (c) 2001 Daniel Hartmeier All rights reserved.
|
/FreeRTOS-Plus/Source/Reliance-Edge/doc/ |
A D | release_notes.md | 34 redconf.c. The configuration utility has been updated to version 1.1 and 59 - This added a new field to the volume configuration in redconf.c: existing 60 redconf.c files from v1.0.1 and earlier must be updated to work with v1.0.2. 61 Open redconf.h and redconf.c with the configuration tool, enable
|
A D | release_notes.txt | 41 and redconf.c. The configuration utility has been updated to version 70 - This added a new field to the volume configuration in redconf.c: 71 existing redconf.c files from v1.0.1 and earlier must be updated to 72 work with v1.0.2. Open redconf.h and redconf.c with the
|
/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Plaintext/ |
A D | readme.txt | 13 c. Verify that there is an output as shown below
|
/FreeRTOS-Plus/Demo/coreMQTT_Windows_Simulator/MQTT_Basic_TLS/ |
A D | mqtt_broker_setup.txt | 32 c. Verify that there is an output as shown below 34 d. If there is no output on step c, go through the Mosquitto documentation
|
/FreeRTOS-Plus/Demo/coreMQTT_Windows_Simulator/MQTT_Mutual_Auth/ |
A D | mqtt_broker_setup.txt | 35 c. Verify that there is an output as shown below 37 d. If there is no output on step c, go through the Mosquitto documentation
|
/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/Common/presigned_url_generator/ |
A D | README.md | 40 ```c
|
/FreeRTOS-Plus/Demo/coreMQTT_Windows_Simulator/MQTT_Multitask/ |
A D | mqtt_broker_setup.txt | 38 c. Verify that there is an output as shown below 40 d. If there is no output on step c, go through the Mosquitto documentation
|