mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 10:28:29 -04:00
desktop: more cygwin fixes
This commit is contained in:
parent
e991d81eee
commit
19666f5a43
@ -170,7 +170,8 @@ else
|
||||
LIBTOKENS := $(sort $(shell cat $(SKETCHPDESRCS) $(SKETCHSRCS) | sed -nre $(SEXPR)))
|
||||
endif
|
||||
|
||||
NODESKTOP := FastSerial/FastSerial.cpp
|
||||
# these are library objects we don't want in the desktop build (maybe we'll add them later)
|
||||
NODESKTOP := FastSerial/FastSerial.cpp AP_Compass/AP_Compass_HMC5843.cpp APM_BMP085/APM_BMP085.cpp
|
||||
|
||||
#
|
||||
# Find sketchbook libraries referenced by the sketch.
|
||||
|
@ -71,6 +71,11 @@ int strcasecmp_P(PGM_P str1, PGM_P str2)
|
||||
return strcasecmp(str1, str2);
|
||||
}
|
||||
|
||||
int strcmp_P(PGM_P str1, PGM_P str2)
|
||||
{
|
||||
return strcmp(str1, str2);
|
||||
}
|
||||
|
||||
|
||||
void digitalWrite(uint8_t pin, uint8_t val)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user