Skip to content

Commit

Permalink
Added copyright headers
Browse files Browse the repository at this point in the history
  • Loading branch information
thegecko committed Feb 10, 2024
1 parent d0543fb commit a8a47f1
Show file tree
Hide file tree
Showing 13 changed files with 111 additions and 36 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Change Log

## 1.0.1
- Added copyright headers

## 1.0.0
- Initial release
12 changes: 9 additions & 3 deletions api/serial-monitor.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2024 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

export interface SerialFilter {
serialNumber?: string;
Expand Down
12 changes: 9 additions & 3 deletions src/api.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2023 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

import { SerialMonitorApiV1, SerialMonitorExtension } from '../api/serial-monitor';
import { SerialManager } from './serial-manager';
Expand Down
12 changes: 9 additions & 3 deletions src/browser/browser-device-provider.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2022 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

import * as vscode from 'vscode';
import { SerialDeviceProvider } from '../serial-manager';
Expand Down
12 changes: 9 additions & 3 deletions src/browser/extension.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2022 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

import * as vscode from 'vscode';
import { BrowserDeviceProvider } from './browser-device-provider';
Expand Down
12 changes: 9 additions & 3 deletions src/desktop/desktop-device-provider.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2023 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

import * as vscode from 'vscode';
import { SerialPort } from 'serialport';
Expand Down
12 changes: 9 additions & 3 deletions src/desktop/desktop-serial-device.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2022 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

import { SerialPort } from 'serialport';
import { PortInfo } from '@serialport/bindings-cpp';
Expand Down
12 changes: 9 additions & 3 deletions src/desktop/extension.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2022 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

import * as vscode from 'vscode';
import { DesktopDeviceProvider } from './desktop-device-provider';
Expand Down
12 changes: 9 additions & 3 deletions src/logger.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2023 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

import * as vscode from 'vscode';
import * as manifest from './manifest';
Expand Down
12 changes: 9 additions & 3 deletions src/manifest.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2023 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

export const PACKAGE_NAME = 'serial-monitor';
export const DISPLAY_NAME = 'Serial Monitor';
Expand Down
12 changes: 9 additions & 3 deletions src/serial-device.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2023 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

import * as vscode from 'vscode';

Expand Down
12 changes: 9 additions & 3 deletions src/serial-manager.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2023 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

import * as vscode from 'vscode';
import * as manifest from './manifest';
Expand Down
12 changes: 9 additions & 3 deletions src/serial-terminal.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/**
* Copyright (C) 2022 Arm Limited
*/
/*********************************************************************
* Copyright (c) 2024 Arm Limited and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*********************************************************************/

import * as vscode from 'vscode';
import { SerialDevice } from './serial-device';
Expand Down

0 comments on commit a8a47f1

Please sign in to comment.