Skip to content
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

sys/net/netopt: Drop deprecated NETOPT_MAX_PACKET_SIZE #16023

Merged
merged 9 commits into from
Aug 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cpu/stm32/include/vendor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ PKG_LICENSE=Apache-2
# Store the cloned repositories under the stm32 directory to prevent downloads
# for each builds.
PKG_SOURCE_DIR = $(RIOTBASE)/cpu/stm32/include/vendor/cmsis/$(CPU_FAM)
PKG_PATCH_DIR = $(CURDIR)/patches/$(CPU_FAM)

include $(RIOTBASE)/pkg/pkg.mk

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 86e104c707fed103d6fa92ba9a44f0502aa82933 Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32f0xx: remove ErrorStatus

---
Include/stm32f0xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32f0xx.h b/Include/stm32f0xx.h
index 621a5fa..61faaf9 100644
--- a/Include/stm32f0xx.h
+++ b/Include/stm32f0xx.h
@@ -169,12 +169,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0U,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 95ab50cfd3a3e5dcb10978f1957136e7dcfe78ca Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 15:33:09 +0200
Subject: [PATCH] stm32f1xx: remove ErrorStatus

---
Include/stm32f1xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32f1xx.h b/Include/stm32f1xx.h
index 2f47c00..7f7b757 100644
--- a/Include/stm32f1xx.h
+++ b/Include/stm32f1xx.h
@@ -161,12 +161,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0U,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 524058e187edb2b8ce5bd150d29261cfa34a6201 Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32f2xx: remove ErrorStatus

---
Include/stm32f2xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32f2xx.h b/Include/stm32f2xx.h
index b56e1e1..0f86517 100644
--- a/Include/stm32f2xx.h
+++ b/Include/stm32f2xx.h
@@ -132,12 +132,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0U,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 23eff8ffe148e23931c6da226eb207185a55879b Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32f3xx: remove ErrorStatus

---
Include/stm32f3xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32f3xx.h b/Include/stm32f3xx.h
index 447e6c4..52306f4 100644
--- a/Include/stm32f3xx.h
+++ b/Include/stm32f3xx.h
@@ -174,12 +174,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0U,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 4050cfd0d878fcfbd6e968eb53d82ba18b2393c0 Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32f4xx: remove ErrorStatus

---
Include/stm32f4xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32f4xx.h b/Include/stm32f4xx.h
index 911183b..342fe97 100644
--- a/Include/stm32f4xx.h
+++ b/Include/stm32f4xx.h
@@ -211,12 +211,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0U,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 47ae0d20e61b4cb8ac96d08f4bccc727d98b98ae Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32f7xx: remove ErrorStatus

---
Include/stm32f7xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32f7xx.h b/Include/stm32f7xx.h
index 84f9de4..2c02749 100644
--- a/Include/stm32f7xx.h
+++ b/Include/stm32f7xx.h
@@ -166,12 +166,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0U,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From f9a82cd82510f7bf825d94b8911a26ade13c5039 Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32g0xx: remove ErrorStatus

---
Include/stm32g0xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32g0xx.h b/Include/stm32g0xx.h
index 8af3dc3..141e9e3 100644
--- a/Include/stm32g0xx.h
+++ b/Include/stm32g0xx.h
@@ -134,12 +134,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From b79de2d132b4c6ee769f9ed22998b5d081569760 Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32g4xx: remove ErrorStatus

---
Include/stm32g4xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32g4xx.h b/Include/stm32g4xx.h
index 3ff61d8..0c4854e 100644
--- a/Include/stm32g4xx.h
+++ b/Include/stm32g4xx.h
@@ -141,12 +141,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 90e047a25c686ac7f05b5c7a0d7a03e66b9f9655 Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32l0xx: remove ErrorStatus

---
Include/stm32l0xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32l0xx.h b/Include/stm32l0xx.h
index c37e141..1c7e531 100644
--- a/Include/stm32l0xx.h
+++ b/Include/stm32l0xx.h
@@ -183,12 +183,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 185f7bb7d4c8638da0e5aeda9ccaaf8f5108ebdd Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32l1xx: remove ErrorStatus

---
Include/stm32l1xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32l1xx.h b/Include/stm32l1xx.h
index 762015c..645e4bb 100644
--- a/Include/stm32l1xx.h
+++ b/Include/stm32l1xx.h
@@ -187,12 +187,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From f9e113b189935b9873dc0765213db80af581062b Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32l4xx: remove ErrorStatus

---
Include/stm32l4xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32l4xx.h b/Include/stm32l4xx.h
index 619e8c0..206c480 100644
--- a/Include/stm32l4xx.h
+++ b/Include/stm32l4xx.h
@@ -196,12 +196,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From ef2c61f1ea41c8bf8e63d749e681b791b3f84537 Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32l5xx: remove ErrorStatus

---
Include/stm32l5xx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32l5xx.h b/Include/stm32l5xx.h
index 6a1f21b..76a1470 100644
--- a/Include/stm32l5xx.h
+++ b/Include/stm32l5xx.h
@@ -122,12 +122,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 2a012fb2a0af27f65ddc62853d5813e049639b00 Mon Sep 17 00:00:00 2001
From: Benjamin Valentin <[email protected]>
Date: Wed, 25 Aug 2021 16:19:00 +0200
Subject: [PATCH] stm32wbxx: remove ErrorStatus

---
Include/stm32wbxx.h | 6 ------
1 file changed, 6 deletions(-)

diff --git a/Include/stm32wbxx.h b/Include/stm32wbxx.h
index 3af8492..e531dec 100644
--- a/Include/stm32wbxx.h
+++ b/Include/stm32wbxx.h
@@ -118,12 +118,6 @@ typedef enum
} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))

-typedef enum
-{
- SUCCESS = 0,
- ERROR = !SUCCESS
-} ErrorStatus;
-
/**
* @}
*/
--
2.30.2

Loading