Skip to content

Commit 259eaab

Browse files
committed
cc3200: Clean up and reduce use/include of std.h.
1 parent 2764a8e commit 259eaab

19 files changed

Lines changed: 11 additions & 33 deletions

File tree

cc3200/bootmgr/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include <stdint.h>
2828
#include <stdbool.h>
29-
#include <std.h>
29+
#include "std.h"
3030

3131
#include "py/mpconfig.h"
3232
#include MICROPY_HAL_H

cc3200/fatfs/src/ffconf.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
*/
2626

2727
#include <string.h>
28-
#include <std.h>
2928

3029
#include "py/mpconfig.h"
3130
#include "py/misc.h"

cc3200/ftp/ftp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include <stdint.h>
2828
#include <ctype.h>
29-
#include <std.h>
29+
#include "std.h"
3030

3131
#include "py/mpconfig.h"
3232
#include MICROPY_HAL_H

cc3200/ftp/updater.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#include <stdint.h>
22
#include <stdbool.h>
3-
#include "std.h"
43

54
#include "py/mpconfig.h"
65
#include MICROPY_HAL_H

cc3200/misc/mperror.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* THE SOFTWARE.
2626
*/
2727

28-
#include <std.h>
28+
#include <stdio.h>
2929
#include <stdint.h>
3030
#include <string.h>
3131

cc3200/misc/mpexception.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
#include <stdint.h>
2929
#include <string.h>
30-
#include <std.h>
3130

3231
#include "py/mpstate.h"
3332
#include "mpexception.h"

cc3200/mods/modnetwork.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* THE SOFTWARE.
2626
*/
2727

28-
#include <std.h>
28+
#include <stdio.h>
2929
#include <stdint.h>
3030
#include <string.h>
3131

cc3200/mods/modpyb.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@
2525
* THE SOFTWARE.
2626
*/
2727

28-
29-
#include <std.h>
3028
#include <stdint.h>
29+
#include "std.h"
3130

3231
#include "py/mpstate.h"
3332
#include "py/runtime.h"

cc3200/mods/moduos.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
#include <stdint.h>
2929
#include <string.h>
30-
#include "std.h"
3130

3231
#include "py/mpconfig.h"
3332
#include "py/nlr.h"

cc3200/mods/modusocket.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
* THE SOFTWARE.
2626
*/
2727

28-
#include <std.h>
2928
#include <stdint.h>
3029
#include <string.h>
3130

0 commit comments

Comments
 (0)