mirror of
				https://github.com/0xFEEDC0DE64/arduino-esp32.git
				synced 2025-11-03 23:51:39 +01:00 
			
		
		
		
	* fix sdmmc config * Fix warnings in EEPROM from @Curclamas * remove leftover TAG in EEPROM * Initial add of @stickbreaker i2c * Add log_n * fix warnings when log is off * i2c code clean up and reorganization * add flags to interrupt allocator * fix sdmmc config * Fix warnings in EEPROM from @Curclamas * remove leftover TAG in EEPROM * fix errors with latest IDF * fix debug optimization (#1365) incorrect optimization for debugging tick markers. * Fix some missing BT header * Change BTSerial log calls * Update BLE lib * Arduino-ESP32 release management scripted (#1515) * Calculate an absolute path for a custom partitions table (#1452) * * Arduino-ESP32 release management scripted (ready-to-merge) * * secure env for espressif/arduino-esp32 * * build tests enabled * gitter webhook enabled * * gitter room link fixed * better comment * * filepaths fixed * BT Serial adjustments * * don't run sketch builds & tests for tagged builds * Return false from WiFi.hostByName() if hostname is not resolved * Free BT Memory when BT is not used * WIFI_MODE_NULL is not supported anymore * Select some key examples to build with PlatformIO to save some time * Update BLE lib * Fixed BLE lib * Major WiFi overhaul - auto reconnect on connection loss now works - moved to event groups - some code clean up and procedure optimizations - new methods to get a more elaborate system ststus * Add cmake tests to travis * Add initial AsyncUDP * Add NetBIOS lib and fix CMake includes * Add Initial WebServer * Fix WebServer and examples * travis not quiting on build fail * Try different travis build * Update IDF to aaf1239 * Fix WPS Example * fix script permission and add some fail tests to sketch builder * Add missing space in WiFiClient::write(Stream &stream)
		
			
				
	
	
		
			104 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Doubly-linked list
 | 
						|
 * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
 | 
						|
 *
 | 
						|
 * This program is free software; you can redistribute it and/or modify
 | 
						|
 * it under the terms of the GNU General Public License version 2 as
 | 
						|
 * published by the Free Software Foundation.
 | 
						|
 *
 | 
						|
 * Alternatively, this software may be distributed under the terms of BSD
 | 
						|
 * license.
 | 
						|
 *
 | 
						|
 * See README and COPYING for more details.
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef LIST_H
 | 
						|
#define LIST_H
 | 
						|
 | 
						|
#include <stddef.h>
 | 
						|
 | 
						|
/**
 | 
						|
 * struct dl_list - Doubly-linked list
 | 
						|
 */
 | 
						|
struct dl_list {
 | 
						|
	struct dl_list *next;
 | 
						|
	struct dl_list *prev;
 | 
						|
};
 | 
						|
 | 
						|
static inline void dl_list_init(struct dl_list *list)
 | 
						|
{
 | 
						|
	list->next = list;
 | 
						|
	list->prev = list;
 | 
						|
}
 | 
						|
 | 
						|
static inline void dl_list_add(struct dl_list *list, struct dl_list *item)
 | 
						|
{
 | 
						|
	item->next = list->next;
 | 
						|
	item->prev = list;
 | 
						|
	list->next->prev = item;
 | 
						|
	list->next = item;
 | 
						|
}
 | 
						|
 | 
						|
static inline void dl_list_add_tail(struct dl_list *list, struct dl_list *item)
 | 
						|
{
 | 
						|
	dl_list_add(list->prev, item);
 | 
						|
}
 | 
						|
 | 
						|
static inline void dl_list_del(struct dl_list *item)
 | 
						|
{
 | 
						|
	item->next->prev = item->prev;
 | 
						|
	item->prev->next = item->next;
 | 
						|
	item->next = NULL;
 | 
						|
	item->prev = NULL;
 | 
						|
}
 | 
						|
 | 
						|
static inline int dl_list_empty(struct dl_list *list)
 | 
						|
{
 | 
						|
	return list->next == list;
 | 
						|
}
 | 
						|
 | 
						|
static inline unsigned int dl_list_len(struct dl_list *list)
 | 
						|
{
 | 
						|
	struct dl_list *item;
 | 
						|
	int count = 0;
 | 
						|
	for (item = list->next; item != list; item = item->next)
 | 
						|
		count++;
 | 
						|
	return count;
 | 
						|
}
 | 
						|
 | 
						|
#ifndef offsetof
 | 
						|
#define offsetof(type, member) ((long) &((type *) 0)->member)
 | 
						|
#endif
 | 
						|
 | 
						|
#define dl_list_entry(item, type, member) \
 | 
						|
	((type *) ((char *) item - offsetof(type, member)))
 | 
						|
 | 
						|
#define dl_list_first(list, type, member) \
 | 
						|
	(dl_list_empty((list)) ? NULL : \
 | 
						|
	 dl_list_entry((list)->next, type, member))
 | 
						|
 | 
						|
#define dl_list_last(list, type, member) \
 | 
						|
	(dl_list_empty((list)) ? NULL : \
 | 
						|
	 dl_list_entry((list)->prev, type, member))
 | 
						|
 | 
						|
#define dl_list_for_each(item, list, type, member) \
 | 
						|
	for (item = dl_list_entry((list)->next, type, member); \
 | 
						|
	     &item->member != (list); \
 | 
						|
	     item = dl_list_entry(item->member.next, type, member))
 | 
						|
 | 
						|
#define dl_list_for_each_safe(item, n, list, type, member) \
 | 
						|
	for (item = dl_list_entry((list)->next, type, member), \
 | 
						|
		     n = dl_list_entry(item->member.next, type, member); \
 | 
						|
	     &item->member != (list); \
 | 
						|
	     item = n, n = dl_list_entry(n->member.next, type, member))
 | 
						|
 | 
						|
#define dl_list_for_each_reverse(item, list, type, member) \
 | 
						|
	for (item = dl_list_entry((list)->prev, type, member); \
 | 
						|
	     &item->member != (list); \
 | 
						|
	     item = dl_list_entry(item->member.prev, type, member))
 | 
						|
 | 
						|
#define DEFINE_DL_LIST(name) \
 | 
						|
	struct dl_list name = { &(name), &(name) }
 | 
						|
 | 
						|
#endif /* LIST_H */
 |