• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

SpiNNakerManchester / JavaSpiNNaker / 6187484699

14 Sep 2023 03:05PM UTC coverage: 36.874% (-0.006%) from 36.88%
6187484699

push

github

web-flow
Merge pull request #1054 from SpiNNakerManchester/blacklist_ui

Blacklist UI

61 of 61 new or added lines in 8 files covered. (100.0%)

8658 of 23480 relevant lines covered (36.87%)

0.37 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/SpiNNaker-allocserv/src/main/java/uk/ac/manchester/spinnaker/alloc/model/BoardTemperatures.java
1
/*
2
 * Copyright (c) 2023 The University of Manchester
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 *     https://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16
package uk.ac.manchester.spinnaker.alloc.model;
17

18
import uk.ac.manchester.spinnaker.messages.model.ADCInfo;
19

20
/**
21
 * A board temperature.
22
 */
23
public class BoardTemperatures {
24
        /** The board temperature. */
25
        public final double boardTemperature;
26

27
        /** The BMP temperature. */
28
        public final Double bmpTemperature;
29

30
        /**
31
         * Make a new BoardTemperatures object.
32
         *
33
         * @param adcInfo The ADCInformation.
34
         */
35
        public BoardTemperatures(ADCInfo adcInfo) {
×
36
                this.boardTemperature = adcInfo.tempTop;
×
37
                this.bmpTemperature = adcInfo.tempExt0;
×
38
        }
×
39
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc