-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Swing integration #2085
Swing integration #2085
Conversation
- dedicated swing without mag - strip code before upload - read battery and baro from sysfs - read power button by hand and restart - needs to be plugged to enable telnet, can be disconnected after upload
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, just minor issues with commented out code, see my comments.
conf/boards/swing.makefile
Outdated
# ----------------------------------------------------------------------- | ||
|
||
# default LED configuration | ||
RADIO_CONTROL_LED ?= none |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
identation
|
||
pwm_delos_quadruplet m = {{ 1, 1, 1, 1 }}; | ||
int ret __attribute__((unused)) = ioctl(actuators_fd, PWM_DELOS_SET_SPEEDS, &m); | ||
#if ACTUATORS_SWING_DEBUG |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are the debug values still relevant? Assuming this code works as it should?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this might still be useful in the future for people doing advance control to check everything is correct here
sw/airborne/boards/swing/actuators.c
Outdated
#include <sys/ioctl.h> | ||
#include <fcntl.h> | ||
|
||
#define PWM_MAGIC 'p' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a more descriptive name would be useful
sw/airborne/boards/swing/board.c
Outdated
#include <linux/input.h> | ||
#include "subsystems/electrical.h" | ||
|
||
#if 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove if not used
sw/airborne/boards/swing/board.c
Outdated
} | ||
|
||
// Wait 100ms | ||
usleep(100000); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make configurable ?
sw/airborne/boards/swing/board.c
Outdated
static void *bat_read(void *data __attribute__((unused))) | ||
{ | ||
FILE *fp; | ||
char path[1035]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
excessively large array?
sw/airborne/boards/swing/board.c
Outdated
|
||
/** | ||
* Battery reading thread | ||
* TODO something better ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this working satisfactory as is? If yes, remove TODO comment, if not it should be improved.
sw/airborne/boards/swing/board.c
Outdated
printf("Stopping Paparazzi from power button and rebooting\n"); | ||
usleep(1000); | ||
int ret __attribute__((unused)); | ||
//ret = system("pstart delosd"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove commented lines
sw/airborne/boards/swing/board.c
Outdated
* - /usr/bin/dragon-prog | ||
* | ||
*/ | ||
//stop_gracefull("delosd"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
again, remove unused code
Also, I don't have a way to actually test it - so I am assuming you are taking care of that part:) |
Not entirely sure this is the right place @gautierhattenberger @podhrmic, I just pulled master and got a strange error upon uploading to an ARDrone2. Tracking back it seems something has changed here that causes the following error. It is possible that the error did not exist in the code for this pull request, but happened in 6d60a2c I couldn't find a pull request for that commit. Note that I can 'upload', get this error, and start the gcs regardless. Thus I am not sure what is wrong exactly, it might just be an error in the output data. The error: #pragma message: Succesfully started "ap.elf" on Ardrone 2 FAILED 'make -C /home/titus/test/paparazzi -f Makefile.ac AIRCRAFT=ARDrone2_opticflow ap.upload' with code 2 |
Can you test the branch |
Confirmed fix: #pragma message: Succesfully started "ap.elf" on Ardrone 2 ======================== Filesystem Status ======================== DONE 'make -C /home/titus/test/paparazzi -f Makefile.ac AIRCRAFT=ARDrone2_opticflow ap.upload' |
fixed with 407bc0d |
At the moment, it is using a firmware provided by Parrot, we need to see if it works with the default official firmware.