Skip to content

Commit

Permalink
Add STM32F3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
cassy73 authored Jan 3, 2017
1 parent ee8b8fe commit 293bbed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dns.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
//#include <stdlib.h>
#if defined(ARDUINO)
#include "Arduino.h"
#include "Udp.h"
#if defined(__STM32F3__) || defined(STM32F3)
#include "mbed/Udp.h"
#else
#include "Udp.h"
#endif
#endif
#if defined(__MBED__)
#include <mbed.h>
Expand Down

0 comments on commit 293bbed

Please sign in to comment.