diff --git a/SDP/SDP/SDP.py b/SDP/SDP/SDP.py
index 6670fee0ae982657c91b2462f6eeeebce510e522..d488b408e97eeba829334ae80529b5ae762ac157 100644
--- a/SDP/SDP/SDP.py
+++ b/SDP/SDP/SDP.py
@@ -310,7 +310,7 @@ class SDP(Device):
     @fault_on_error
     def read_fpga_scrap_R(self):
         """Return the fpga_scrap_R attribute."""
-        self._fpga_scrap_R = numpy.array(numpy.split(numpy.array(self.attribute_mapping["fpga_scrap_R"].get_data_value().Value.Value), indices_or_sections = 16))
+        self._fpga_scrap_R = numpy.array(self.attribute_mapping["fpga_scrap_R"].get_data_value().Value.Value)
         return self._fpga_scrap_R
 
     @only_when_on