Skip to content

Commit db7df43

Browse files
committed
[nasa/nos3#468] created checkout for thruster, and verified proper operations.
1 parent 83d0bb6 commit db7df43

7 files changed

+85
-141
lines changed

.gitignore

+16-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
support/build
1+
#
2+
# Metadata
3+
#
4+
.vagrant
5+
.vscode
6+
7+
#
8+
# Build Files
9+
#
10+
build
11+
fprime/build
12+
fsw/standalone/build
13+
tmp
14+
.cdskeyfile
15+
.reservedkeyfile
16+
.resetkeyfile

fsw/shared/generic_thruster_device.c

+12-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
int32_t GENERIC_THRUSTER_SetPercentage(uart_info_t *device, uint8_t thruster_number, uint8_t percentage, uint8_t data_length)
1616
{
1717
int32_t status;
18+
uint32_t response;
1819
uint8_t request[6];
1920

2021
request[0] = GENERIC_THRUSTER_DEVICE_HDR_0;
@@ -28,15 +29,24 @@ int32_t GENERIC_THRUSTER_SetPercentage(uart_info_t *device, uint8_t thruster_num
2829
if (status == UART_SUCCESS)
2930
{
3031
/* Write data */
31-
status = uart_write_port(device, request, GENERIC_THRUSTER_DEVICE_CMD_SIZE);
32+
response = uart_write_port(device, request, GENERIC_THRUSTER_DEVICE_CMD_SIZE);
3233
#ifdef GENERIC_THRUSTER_CFG_DEBUG
3334
OS_printf(" GENERIC_THRUSTER_SetPercentage[%d] = ", status);
3435
for (uint32_t i = 0; i < GENERIC_THRUSTER_DEVICE_CMD_SIZE; i++)
3536
{
36-
OS_printf("%02x", write_data[i]);
37+
OS_printf("%02x", request[i]);
3738
}
3839
OS_printf("\n");
3940
#endif
41+
42+
if( response != GENERIC_THRUSTER_DEVICE_CMD_SIZE )
43+
{
44+
status = OS_ERROR;
45+
}
46+
else
47+
{
48+
status = OS_SUCCESS;
49+
}
4050
} /* uart_flush*/
4151

4252
return status;

fsw/shared/generic_thruster_device.h

-12
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,6 @@
3131
#define GENERIC_THRUSTER_DEVICE_HDR_TRL_LEN 4
3232
#define GENERIC_THRUSTER_DEVICE_CMD_SIZE 6
3333

34-
/*
35-
** GENERIC_THRUSTER device housekeeping telemetry definition
36-
*/
37-
typedef struct
38-
{
39-
uint8_t DeviceErrorCount;
40-
uint8_t DeviceCount;
41-
42-
} __attribute__((packed)) GENERIC_THRUSTER_Device_HK_tlm_t;
43-
#define GENERIC_THRUSTER_DEVICE_HK_LNGTH sizeof ( GENERIC_THRUSTER_Device_HK_tlm_t )
44-
#define GENERIC_THRUSTER_DEVICE_HK_SIZE GENERIC_THRUSTER_DEVICE_HK_LNGTH + GENERIC_THRUSTER_DEVICE_HDR_TRL_LEN
45-
4634
/*
4735
** Prototypes
4836
*/

support/CMakeLists.txt fsw/standalone/CMakeLists.txt

+14-13
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ cmake_minimum_required(VERSION 2.6.4)
33
project (generic_thruster_checkout)
44

55
if (NOT DEFINED TGTNAME)
6-
set(TGTNAME "cpu1")
7-
message(STATUS "Selecting cpu1 for build, can override with \"-DTGTNAME=cpu1\"")
6+
message(FATAL_ERROR "TGTNAME must be defined on the cmake command line (e.g. \"-DTGTNAME=cpu1\")")
87
endif()
98

10-
include(../../ComponentSettings.cmake)
9+
include(../../../ComponentSettings.cmake)
1110

1211
if(${TGTNAME} STREQUAL cpu1)
1312
find_path(_ITC_CMAKE_MODULES_
@@ -26,23 +25,25 @@ if(${TGTNAME} STREQUAL cpu1)
2625
endif()
2726

2827
include_directories("./")
29-
include_directories("../fsw/platform_inc")
30-
include_directories("../fsw/src")
31-
include_directories("../../../fsw/apps/hwlib/fsw/public_inc")
28+
include_directories("../cfs/platform_inc")
29+
include_directories("../cfs/src")
30+
include_directories("../shared")
31+
include_directories("../../../../fsw/apps/hwlib/fsw/public_inc")
3232

3333
set(generic_thruster_checkout_src
3434
generic_thruster_checkout.c
35+
../shared/generic_thruster_device.c
3536
)
3637

3738
if(${TGTNAME} STREQUAL cpu1)
38-
include_directories("../../../fsw/apps/hwlib/sim/inc")
39+
include_directories("../../../../fsw/apps/hwlib/sim/inc")
3940
set(generic_thruster_checkout_src
4041
${generic_thruster_checkout_src}
41-
../../../fsw/apps/hwlib/sim/src/libuart.c
42-
../../../fsw/apps/hwlib/sim/src/libcan.c
43-
../../../fsw/apps/hwlib/sim/src/libi2c.c
44-
../../../fsw/apps/hwlib/sim/src/libspi.c
45-
../../../fsw/apps/hwlib/sim/src/nos_link.c
42+
../../../../fsw/apps/hwlib/sim/src/libuart.c
43+
../../../../fsw/apps/hwlib/sim/src/libcan.c
44+
../../../../fsw/apps/hwlib/sim/src/libi2c.c
45+
../../../../fsw/apps/hwlib/sim/src/libspi.c
46+
../../../../fsw/apps/hwlib/sim/src/nos_link.c
4647
)
4748
set(generic_thruster_checkout_libs
4849
${ITC_Common_LIBRARIES}
@@ -52,7 +53,7 @@ endif()
5253
if(${TGTNAME} STREQUAL cpu2)
5354
set(generic_thruster_checkout_src
5455
${generic_thruster_checkout_src}
55-
../../../fsw/apps/hwlib/fsw/linux/libuart.c
56+
../../../../fsw/apps/hwlib/fsw/linux/libuart.c
5657
)
5758
endif()
5859

support/device_cfg.h fsw/standalone/device_cfg.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
*/
77
#define GENERIC_THRUSTER_CFG
88
/* Note: NOS3 uart requires matching handle and bus number */
9-
#define GENERIC_THRUSTER_CFG_STRING "/dev/usart_9"
10-
#define GENERIC_THRUSTER_CFG_HANDLE 9
9+
#define GENERIC_THRUSTER_CFG_STRING "usart_29"
10+
#define GENERIC_THRUSTER_CFG_HANDLE 29
1111
#define GENERIC_THRUSTER_CFG_BAUDRATE_HZ 115200
12-
#define GENERIC_THRUSTER_CFG_MS_TIMEOUT 250
12+
#define GENERIC_THRUSTER_CFG_MS_TIMEOUT 50
1313
#define GENERIC_THRUSTER_CFG_DEBUG
1414

1515
#endif /* _GENERIC_THRUSTER_CHECKOUT_DEVICE_CFG_H_ */

support/generic_thruster_checkout.c fsw/standalone/generic_thruster_checkout.c

+32-99
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,10 @@
1212
*/
1313
#include "generic_thruster_checkout.h"
1414

15-
1615
/*
1716
** Global Variables
1817
*/
19-
uart_info_t Generic_thrusterUart;
20-
GENERIC_THRUSTER_Device_HK_tlm_t Generic_thrusterHK;
21-
GENERIC_THRUSTER_Device_Data_tlm_t Generic_thrusterData;
18+
uart_info_t ThrusterUart;
2219

2320
/*
2421
** Component Functions
@@ -29,14 +26,8 @@ void print_help(void)
2926
"---------------------------------------------------------------------\n"
3027
"help - Display help \n"
3128
"exit - Exit app \n"
32-
"noop - No operation command to device \n"
33-
" n - ^ \n"
34-
"hk - Request device housekeeping \n"
35-
" h - ^ \n"
36-
"generic_thruster - Request generic_thruster data \n"
37-
" s - ^ \n"
38-
"cfg # - Send configuration # \n"
39-
" c # - ^ \n"
29+
"percentage # # - Set thruster # to percentage # \n"
30+
" p # # - ^ \n"
4031
"\n"
4132
);
4233
}
@@ -59,37 +50,13 @@ int get_command(const char* str)
5950
{
6051
status = CMD_EXIT;
6152
}
62-
else if(strcmp(lcmd, "noop") == 0)
63-
{
64-
status = CMD_NOOP;
65-
}
66-
else if(strcmp(lcmd, "n") == 0)
67-
{
68-
status = CMD_NOOP;
69-
}
70-
else if(strcmp(lcmd, "hk") == 0)
71-
{
72-
status = CMD_HK;
73-
}
74-
else if(strcmp(lcmd, "h") == 0)
75-
{
76-
status = CMD_HK;
77-
}
78-
else if(strcmp(lcmd, "generic_thruster") == 0)
53+
else if(strcmp(lcmd, "percentage") == 0)
7954
{
80-
status = CMD_GENERIC_THRUSTER;
55+
status = CMD_PERCENTAGE;
8156
}
82-
else if(strcmp(lcmd, "s") == 0)
57+
else if(strcmp(lcmd, "p") == 0)
8358
{
84-
status = CMD_GENERIC_THRUSTER;
85-
}
86-
else if(strcmp(lcmd, "cfg") == 0)
87-
{
88-
status = CMD_CFG;
89-
}
90-
else if(strcmp(lcmd, "c") == 0)
91-
{
92-
status = CMD_CFG;
59+
status = CMD_PERCENTAGE;
9360
}
9461
return status;
9562
}
@@ -99,7 +66,8 @@ int process_command(int cc, int num_tokens, char tokens[MAX_INPUT_TOKENS][MAX_IN
9966
{
10067
int32_t status = OS_SUCCESS;
10168
int32_t exit_status = OS_SUCCESS;
102-
uint32_t config;
69+
uint8_t thruster_number;
70+
uint8_t percentage;
10371

10472
/* Process command */
10573
switch(cc)
@@ -112,59 +80,15 @@ int process_command(int cc, int num_tokens, char tokens[MAX_INPUT_TOKENS][MAX_IN
11280
exit_status = OS_ERROR;
11381
break;
11482

115-
case CMD_NOOP:
116-
if (check_number_arguments(num_tokens, 0) == OS_SUCCESS)
117-
{
118-
status = GENERIC_THRUSTER_CommandDevice(&Generic_thrusterUart, GENERIC_THRUSTER_DEVICE_NOOP_CMD, 0);
119-
if (status == OS_SUCCESS)
120-
{
121-
OS_printf("NOOP command success\n");
122-
}
123-
else
124-
{
125-
OS_printf("NOOP command failed!\n");
126-
}
127-
}
128-
break;
129-
130-
case CMD_HK:
131-
if (check_number_arguments(num_tokens, 0) == OS_SUCCESS)
83+
case CMD_PERCENTAGE:
84+
if (check_number_arguments(num_tokens, 2) == OS_SUCCESS)
13285
{
133-
status = GENERIC_THRUSTER_RequestHK(&Generic_thrusterUart, &Generic_thrusterHK);
86+
thruster_number = atoi(tokens[0]);
87+
percentage = atoi(tokens[1]);
88+
status = GENERIC_THRUSTER_SetPercentage(&ThrusterUart, thruster_number, percentage, GENERIC_THRUSTER_DEVICE_CMD_SIZE);
13489
if (status == OS_SUCCESS)
13590
{
136-
OS_printf("GENERIC_THRUSTER_RequestHK command success\n");
137-
}
138-
else
139-
{
140-
OS_printf("GENERIC_THRUSTER_RequestHK command failed!\n");
141-
}
142-
}
143-
break;
144-
145-
case CMD_GENERIC_THRUSTER:
146-
if (check_number_arguments(num_tokens, 0) == OS_SUCCESS)
147-
{
148-
status = GENERIC_THRUSTER_RequestData(&Generic_thrusterUart, &Generic_thrusterData);
149-
if (status == OS_SUCCESS)
150-
{
151-
OS_printf("GENERIC_THRUSTER_RequestData command success\n");
152-
}
153-
else
154-
{
155-
OS_printf("GENERIC_THRUSTER_RequestData command failed!\n");
156-
}
157-
}
158-
break;
159-
160-
case CMD_CFG:
161-
if (check_number_arguments(num_tokens, 1) == OS_SUCCESS)
162-
{
163-
config = atoi(tokens[0]);
164-
status = GENERIC_THRUSTER_CommandDevice(&Generic_thrusterUart, GENERIC_THRUSTER_DEVICE_CFG_CMD, config);
165-
if (status == OS_SUCCESS)
166-
{
167-
OS_printf("Configuration command success with value %u\n", config);
91+
OS_printf("Thruster %d command success with value %u\n", thruster_number, percentage);
16892
}
16993
else
17094
{
@@ -191,19 +115,24 @@ int main(int argc, char *argv[])
191115
char* token_ptr;
192116
uint8_t run_status = OS_SUCCESS;
193117

118+
/* Initialize HWLIB */
119+
#ifdef _NOS_ENGINE_LINK_
120+
nos_init_link();
121+
#endif
122+
194123
/* Open device specific protocols */
195-
Generic_thrusterUart.deviceString = GENERIC_THRUSTER_CFG_STRING;
196-
Generic_thrusterUart.handle = GENERIC_THRUSTER_CFG_HANDLE;
197-
Generic_thrusterUart.isOpen = PORT_CLOSED;
198-
Generic_thrusterUart.baud = GENERIC_THRUSTER_CFG_BAUDRATE_HZ;
199-
status = uart_init_port(&Generic_thrusterUart);
124+
ThrusterUart.deviceString = GENERIC_THRUSTER_CFG_STRING;
125+
ThrusterUart.handle = GENERIC_THRUSTER_CFG_HANDLE;
126+
ThrusterUart.isOpen = PORT_CLOSED;
127+
ThrusterUart.baud = GENERIC_THRUSTER_CFG_BAUDRATE_HZ;
128+
status = uart_init_port(&ThrusterUart);
200129
if (status == OS_SUCCESS)
201130
{
202-
printf("UART device %s configured with baudrate %d \n", Generic_thrusterUart.deviceString, Generic_thrusterUart.baud);
131+
printf("UART device %s configured with baudrate %d \n", ThrusterUart.deviceString, ThrusterUart.baud);
203132
}
204133
else
205134
{
206-
printf("UART device %s failed to initialize! \n", Generic_thrusterUart.deviceString);
135+
printf("UART device %s failed to initialize! \n", ThrusterUart.deviceString);
207136
run_status = OS_ERROR;
208137
}
209138

@@ -244,7 +173,11 @@ int main(int argc, char *argv[])
244173
}
245174

246175
// Close the device
247-
uart_close_port(&Generic_thrusterUart);
176+
uart_close_port(&ThrusterUart);
177+
178+
#ifdef _NOS_ENGINE_LINK_
179+
nos_destroy_link();
180+
#endif
248181

249182
OS_printf("Cleanly exiting generic_thruster application...\n\n");
250183
return 1;

support/generic_thruster_checkout.h fsw/standalone/generic_thruster_checkout.h

+8-11
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@
2525

2626
#include "hwlib.h"
2727
#include "device_cfg.h"
28+
#include "generic_thruster_device.h"
2829

30+
#if TGTNAME == cpu1
31+
#include "nos_link.h"
32+
#endif
2933

3034
/*
3135
** Standard Defines
@@ -36,18 +40,13 @@
3640
#define MAX_INPUT_TOKEN_SIZE 50
3741
#define TELEM_BUF_LEN 8
3842

39-
4043
/*
4144
** Command Defines
4245
*/
43-
#define CMD_UNKNOWN -1
44-
#define CMD_HELP 0
45-
#define CMD_EXIT 1
46-
#define CMD_NOOP 2
47-
#define CMD_HK 3
48-
#define CMD_GENERIC_THRUSTER 4
49-
#define CMD_CFG 5
50-
46+
#define CMD_UNKNOWN -1
47+
#define CMD_HELP 0
48+
#define CMD_EXIT 1
49+
#define CMD_PERCENTAGE 2
5150

5251
/*
5352
** Prototypes
@@ -56,12 +55,10 @@ void print_help(void);
5655
int get_command(const char* str);
5756
int main(int argc, char *argv[]);
5857

59-
6058
/*
6159
** Generic Prototypes
6260
*/
6361
int check_number_arguments(int actual, int expected);
6462
void to_lower(char* str);
6563

66-
6764
#endif /* _GENERIC_THRUSTER_CHECKOUT_H_ */

0 commit comments

Comments
 (0)