From cdd0ff3a28aca81e14c311a154822372f4b2e4f0 Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Wed, 2 Apr 2014 13:11:24 +0400 Subject: [PATCH] Added prefix 'uc_' to all .cpp files, which allows to compile libuavcan with makefiles that flatten directory structure (e.g. ChibiOS build system) --- libuavcan/src/driver/{can.cpp => uc_can.cpp} | 0 .../src/marshal/{bit_array_copy.cpp => uc_bit_array_copy.cpp} | 0 libuavcan/src/marshal/{bit_stream.cpp => uc_bit_stream.cpp} | 0 libuavcan/src/marshal/{float_spec.cpp => uc_float_spec.cpp} | 0 ...al_data_type_registry.cpp => uc_global_data_type_registry.cpp} | 0 libuavcan/src/node/{scheduler.cpp => uc_scheduler.cpp} | 0 libuavcan/src/node/{timer.cpp => uc_timer.cpp} | 0 ...data_type_info_provider.cpp => uc_data_type_info_provider.cpp} | 0 ...global_time_sync_master.cpp => uc_global_time_sync_master.cpp} | 0 .../{global_time_sync_slave.cpp => uc_global_time_sync_slave.cpp} | 0 libuavcan/src/protocol/{logger.cpp => uc_logger.cpp} | 0 .../protocol/{node_initializer.cpp => uc_node_initializer.cpp} | 0 .../{node_status_monitor.cpp => uc_node_status_monitor.cpp} | 0 .../{node_status_provider.cpp => uc_node_status_provider.cpp} | 0 .../protocol/{panic_broadcaster.cpp => uc_panic_broadcaster.cpp} | 0 libuavcan/src/protocol/{param_server.cpp => uc_param_server.cpp} | 0 .../{restart_request_server.cpp => uc_restart_request_server.cpp} | 0 ...ansport_stats_provider.cpp => uc_transport_stats_provider.cpp} | 0 libuavcan/src/transport/{can_io.cpp => uc_can_io.cpp} | 0 libuavcan/src/transport/{crc.cpp => uc_crc.cpp} | 0 libuavcan/src/transport/{dispatcher.cpp => uc_dispatcher.cpp} | 0 libuavcan/src/transport/{frame.cpp => uc_frame.cpp} | 0 libuavcan/src/transport/{transfer.cpp => uc_transfer.cpp} | 0 .../src/transport/{transfer_buffer.cpp => uc_transfer_buffer.cpp} | 0 .../transport/{transfer_listener.cpp => uc_transfer_listener.cpp} | 0 .../transport/{transfer_receiver.cpp => uc_transfer_receiver.cpp} | 0 .../src/transport/{transfer_sender.cpp => uc_transfer_sender.cpp} | 0 libuavcan/src/{data_type.cpp => uc_data_type.cpp} | 0 libuavcan/src/{error.cpp => uc_error.cpp} | 0 29 files changed, 0 insertions(+), 0 deletions(-) rename libuavcan/src/driver/{can.cpp => uc_can.cpp} (100%) rename libuavcan/src/marshal/{bit_array_copy.cpp => uc_bit_array_copy.cpp} (100%) rename libuavcan/src/marshal/{bit_stream.cpp => uc_bit_stream.cpp} (100%) rename libuavcan/src/marshal/{float_spec.cpp => uc_float_spec.cpp} (100%) rename libuavcan/src/node/{global_data_type_registry.cpp => uc_global_data_type_registry.cpp} (100%) rename libuavcan/src/node/{scheduler.cpp => uc_scheduler.cpp} (100%) rename libuavcan/src/node/{timer.cpp => uc_timer.cpp} (100%) rename libuavcan/src/protocol/{data_type_info_provider.cpp => uc_data_type_info_provider.cpp} (100%) rename libuavcan/src/protocol/{global_time_sync_master.cpp => uc_global_time_sync_master.cpp} (100%) rename libuavcan/src/protocol/{global_time_sync_slave.cpp => uc_global_time_sync_slave.cpp} (100%) rename libuavcan/src/protocol/{logger.cpp => uc_logger.cpp} (100%) rename libuavcan/src/protocol/{node_initializer.cpp => uc_node_initializer.cpp} (100%) rename libuavcan/src/protocol/{node_status_monitor.cpp => uc_node_status_monitor.cpp} (100%) rename libuavcan/src/protocol/{node_status_provider.cpp => uc_node_status_provider.cpp} (100%) rename libuavcan/src/protocol/{panic_broadcaster.cpp => uc_panic_broadcaster.cpp} (100%) rename libuavcan/src/protocol/{param_server.cpp => uc_param_server.cpp} (100%) rename libuavcan/src/protocol/{restart_request_server.cpp => uc_restart_request_server.cpp} (100%) rename libuavcan/src/protocol/{transport_stats_provider.cpp => uc_transport_stats_provider.cpp} (100%) rename libuavcan/src/transport/{can_io.cpp => uc_can_io.cpp} (100%) rename libuavcan/src/transport/{crc.cpp => uc_crc.cpp} (100%) rename libuavcan/src/transport/{dispatcher.cpp => uc_dispatcher.cpp} (100%) rename libuavcan/src/transport/{frame.cpp => uc_frame.cpp} (100%) rename libuavcan/src/transport/{transfer.cpp => uc_transfer.cpp} (100%) rename libuavcan/src/transport/{transfer_buffer.cpp => uc_transfer_buffer.cpp} (100%) rename libuavcan/src/transport/{transfer_listener.cpp => uc_transfer_listener.cpp} (100%) rename libuavcan/src/transport/{transfer_receiver.cpp => uc_transfer_receiver.cpp} (100%) rename libuavcan/src/transport/{transfer_sender.cpp => uc_transfer_sender.cpp} (100%) rename libuavcan/src/{data_type.cpp => uc_data_type.cpp} (100%) rename libuavcan/src/{error.cpp => uc_error.cpp} (100%) diff --git a/libuavcan/src/driver/can.cpp b/libuavcan/src/driver/uc_can.cpp similarity index 100% rename from libuavcan/src/driver/can.cpp rename to libuavcan/src/driver/uc_can.cpp diff --git a/libuavcan/src/marshal/bit_array_copy.cpp b/libuavcan/src/marshal/uc_bit_array_copy.cpp similarity index 100% rename from libuavcan/src/marshal/bit_array_copy.cpp rename to libuavcan/src/marshal/uc_bit_array_copy.cpp diff --git a/libuavcan/src/marshal/bit_stream.cpp b/libuavcan/src/marshal/uc_bit_stream.cpp similarity index 100% rename from libuavcan/src/marshal/bit_stream.cpp rename to libuavcan/src/marshal/uc_bit_stream.cpp diff --git a/libuavcan/src/marshal/float_spec.cpp b/libuavcan/src/marshal/uc_float_spec.cpp similarity index 100% rename from libuavcan/src/marshal/float_spec.cpp rename to libuavcan/src/marshal/uc_float_spec.cpp diff --git a/libuavcan/src/node/global_data_type_registry.cpp b/libuavcan/src/node/uc_global_data_type_registry.cpp similarity index 100% rename from libuavcan/src/node/global_data_type_registry.cpp rename to libuavcan/src/node/uc_global_data_type_registry.cpp diff --git a/libuavcan/src/node/scheduler.cpp b/libuavcan/src/node/uc_scheduler.cpp similarity index 100% rename from libuavcan/src/node/scheduler.cpp rename to libuavcan/src/node/uc_scheduler.cpp diff --git a/libuavcan/src/node/timer.cpp b/libuavcan/src/node/uc_timer.cpp similarity index 100% rename from libuavcan/src/node/timer.cpp rename to libuavcan/src/node/uc_timer.cpp diff --git a/libuavcan/src/protocol/data_type_info_provider.cpp b/libuavcan/src/protocol/uc_data_type_info_provider.cpp similarity index 100% rename from libuavcan/src/protocol/data_type_info_provider.cpp rename to libuavcan/src/protocol/uc_data_type_info_provider.cpp diff --git a/libuavcan/src/protocol/global_time_sync_master.cpp b/libuavcan/src/protocol/uc_global_time_sync_master.cpp similarity index 100% rename from libuavcan/src/protocol/global_time_sync_master.cpp rename to libuavcan/src/protocol/uc_global_time_sync_master.cpp diff --git a/libuavcan/src/protocol/global_time_sync_slave.cpp b/libuavcan/src/protocol/uc_global_time_sync_slave.cpp similarity index 100% rename from libuavcan/src/protocol/global_time_sync_slave.cpp rename to libuavcan/src/protocol/uc_global_time_sync_slave.cpp diff --git a/libuavcan/src/protocol/logger.cpp b/libuavcan/src/protocol/uc_logger.cpp similarity index 100% rename from libuavcan/src/protocol/logger.cpp rename to libuavcan/src/protocol/uc_logger.cpp diff --git a/libuavcan/src/protocol/node_initializer.cpp b/libuavcan/src/protocol/uc_node_initializer.cpp similarity index 100% rename from libuavcan/src/protocol/node_initializer.cpp rename to libuavcan/src/protocol/uc_node_initializer.cpp diff --git a/libuavcan/src/protocol/node_status_monitor.cpp b/libuavcan/src/protocol/uc_node_status_monitor.cpp similarity index 100% rename from libuavcan/src/protocol/node_status_monitor.cpp rename to libuavcan/src/protocol/uc_node_status_monitor.cpp diff --git a/libuavcan/src/protocol/node_status_provider.cpp b/libuavcan/src/protocol/uc_node_status_provider.cpp similarity index 100% rename from libuavcan/src/protocol/node_status_provider.cpp rename to libuavcan/src/protocol/uc_node_status_provider.cpp diff --git a/libuavcan/src/protocol/panic_broadcaster.cpp b/libuavcan/src/protocol/uc_panic_broadcaster.cpp similarity index 100% rename from libuavcan/src/protocol/panic_broadcaster.cpp rename to libuavcan/src/protocol/uc_panic_broadcaster.cpp diff --git a/libuavcan/src/protocol/param_server.cpp b/libuavcan/src/protocol/uc_param_server.cpp similarity index 100% rename from libuavcan/src/protocol/param_server.cpp rename to libuavcan/src/protocol/uc_param_server.cpp diff --git a/libuavcan/src/protocol/restart_request_server.cpp b/libuavcan/src/protocol/uc_restart_request_server.cpp similarity index 100% rename from libuavcan/src/protocol/restart_request_server.cpp rename to libuavcan/src/protocol/uc_restart_request_server.cpp diff --git a/libuavcan/src/protocol/transport_stats_provider.cpp b/libuavcan/src/protocol/uc_transport_stats_provider.cpp similarity index 100% rename from libuavcan/src/protocol/transport_stats_provider.cpp rename to libuavcan/src/protocol/uc_transport_stats_provider.cpp diff --git a/libuavcan/src/transport/can_io.cpp b/libuavcan/src/transport/uc_can_io.cpp similarity index 100% rename from libuavcan/src/transport/can_io.cpp rename to libuavcan/src/transport/uc_can_io.cpp diff --git a/libuavcan/src/transport/crc.cpp b/libuavcan/src/transport/uc_crc.cpp similarity index 100% rename from libuavcan/src/transport/crc.cpp rename to libuavcan/src/transport/uc_crc.cpp diff --git a/libuavcan/src/transport/dispatcher.cpp b/libuavcan/src/transport/uc_dispatcher.cpp similarity index 100% rename from libuavcan/src/transport/dispatcher.cpp rename to libuavcan/src/transport/uc_dispatcher.cpp diff --git a/libuavcan/src/transport/frame.cpp b/libuavcan/src/transport/uc_frame.cpp similarity index 100% rename from libuavcan/src/transport/frame.cpp rename to libuavcan/src/transport/uc_frame.cpp diff --git a/libuavcan/src/transport/transfer.cpp b/libuavcan/src/transport/uc_transfer.cpp similarity index 100% rename from libuavcan/src/transport/transfer.cpp rename to libuavcan/src/transport/uc_transfer.cpp diff --git a/libuavcan/src/transport/transfer_buffer.cpp b/libuavcan/src/transport/uc_transfer_buffer.cpp similarity index 100% rename from libuavcan/src/transport/transfer_buffer.cpp rename to libuavcan/src/transport/uc_transfer_buffer.cpp diff --git a/libuavcan/src/transport/transfer_listener.cpp b/libuavcan/src/transport/uc_transfer_listener.cpp similarity index 100% rename from libuavcan/src/transport/transfer_listener.cpp rename to libuavcan/src/transport/uc_transfer_listener.cpp diff --git a/libuavcan/src/transport/transfer_receiver.cpp b/libuavcan/src/transport/uc_transfer_receiver.cpp similarity index 100% rename from libuavcan/src/transport/transfer_receiver.cpp rename to libuavcan/src/transport/uc_transfer_receiver.cpp diff --git a/libuavcan/src/transport/transfer_sender.cpp b/libuavcan/src/transport/uc_transfer_sender.cpp similarity index 100% rename from libuavcan/src/transport/transfer_sender.cpp rename to libuavcan/src/transport/uc_transfer_sender.cpp diff --git a/libuavcan/src/data_type.cpp b/libuavcan/src/uc_data_type.cpp similarity index 100% rename from libuavcan/src/data_type.cpp rename to libuavcan/src/uc_data_type.cpp diff --git a/libuavcan/src/error.cpp b/libuavcan/src/uc_error.cpp similarity index 100% rename from libuavcan/src/error.cpp rename to libuavcan/src/uc_error.cpp