/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2019, Google Inc. * * property_ids.cpp : Property ID list * * This file is auto-generated. Do not edit. */ #include /** * \file property_ids.h * \brief Camera property identifiers */ namespace libcamera { /** * \brief Namespace for libcamera properties */ namespace properties { ${controls_doc} /** * \brief Namespace for libcamera draft properties */ namespace draft { ${draft_controls_doc} } /* namespace draft */ #ifndef __DOXYGEN__ /* * Keep the properties definitions hidden from doxygen as it incorrectly parses * them as functions. */ ${controls_def} namespace draft { ${draft_controls_def} } /* namespace draft */ #endif /** * \brief List of all supported libcamera properties */ extern const ControlIdMap properties { ${controls_map} }; } /* namespace properties */ } /* namespace libcamera */ '> libcamera official repositorygit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller/logging.hpp
blob: f0d306b6e7f4e1c9b233a550c2095b830de9d3b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2019-2020, Raspberry Pi (Trading) Limited
 *
 * logging.hpp - logging macros
 */
#pragma once

#include <iostream>

#ifndef RPI_LOGGING_ENABLE
#define RPI_LOGGING_ENABLE 0
#endif

#ifndef RPI_WARNING_ENABLE
#define RPI_WARNING_ENABLE 1
#endif

#define RPI_LOG(stuff)                                                         \
	do {                                                                   \
		if (RPI_LOGGING_ENABLE)                                        \
			std::cout << __FUNCTION__ << ": " << stuff << "\n";    \
	} while (0)

#define RPI_WARN(stuff)                                                        \
	do {                                                                   \
		if (RPI_WARNING_ENABLE)                                        \
			std::cout << __FUNCTION__ << " ***WARNING*** "         \
				  << stuff << "\n";                            \
	} while (0)