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 38c0309 commit 3d7f12d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion UIPEthernet.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@
#endif
#if defined(ARDUINO)
#include <Arduino.h>
#include "IPAddress.h"
#if defined(__STM32F3__) || defined(STM32F3)
#include "mbed/IPAddress.h"
#else
#include "IPAddress.h"
#endif
#endif
#include "Dhcp.h"
#include "utility/Enc28J60Network.h"
Expand Down

0 comments on commit 3d7f12d

Please sign in to comment.